-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 940 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
37
38
39
40
{
"name": "@b4dnewz/process-test",
"version": "0.1.0",
"description": "Easy way to test command line applications",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"pretest": "npm run lint",
"prebuild": "npm run test",
"prepublishOnly": "npm run build",
"lint": "tslint -p . --fix",
"test": "jest",
"test:cover": "jest --coverage",
"build": "tsc",
"docs:build": "typedoc"
},
"author": {
"name": "b4dnewz",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"license": "MIT",
"repository": "b4dnewz/process-test",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.8",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"publishConfig": {
"access": "public"
}
}