-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.06 KB
/
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
37
38
39
{
"name": "pacrunner",
"version": "0.4.0",
"description": "A simple util helps testing PAC file",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"build:watch": "npx tsc -w",
"test": "npx jest",
"test:watch": "npx jest --watch",
"coverage": "npx jest --all --coverage",
"lint": "npx eslint {test,src}/**/*.ts",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepack": "npm run build"
},
"author": "Komsomolsk Inari (https://github.com/komsomolskinari)",
"repository": {
"type": "git",
"url": "https://github.com/komsomolskinari/pacrunner"
},
"files": [
"/dist"
],
"license": "0BSD",
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
}
}