-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 990 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "pacfw",
"version": "0.2.0",
"description": "A simple PAC",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "node --experimental-modules ./util/buildpac.mjs",
"debug:jscript": "cscript //X dist/index.js",
"debug:v8": "node inspect dist/index.js",
"debug:spidermonkey": "js dist/index.js",
"test": "node --experimental-modules ./util/runtest.mjs",
"lint": "npx eslint {test,src}/**/*.ts",
"prepack": "npm run build"
},
"author": "Komsomolsk Inari (https://github.com/komsomolskinari)",
"repository": {
"type": "git",
"url": "https://github.com/komsomolskinari/fwpac"
},
"files": [
"/dist"
],
"license": "See LICENSE",
"devDependencies": {
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"type": "module"
}