-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "advanced-spawn-async",
"version": "0.1.3",
"description": "Advanced isomorphic asynchronous spawn function",
"author": "Hoàng Văn Khải <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodemodules/advanced-spawn-async.git"
},
"bugs": {
"url": "https://github.com/ksxnodemodules/advanced-spawn-async/issues"
},
"homepage": "https://github.com/ksxnodemodules/advanced-spawn-async#readme",
"keywords": [
"spawn",
"promise",
"async",
"isomorphic"
],
"dependencies": {
"tslib": "^2.0.0",
"@types/node": "^14.0.1"
},
"devDependencies": {
"typescript": "^3.9.2",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"static-type-assert": "^4.0.0",
"clean-typescript-build": "^0.1.5",
"tslint": "^6.1.2",
"cross-env": "^7.0.2",
"tslint-config-standard": "^9.0.0",
"@types/jest": "^25.2.2"
},
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "npm run clean && npm run type-check && npm run lint && jest --coverage",
"lint": "npm run tslint",
"tslint": "tslint --project .",
"tslint:fix": "npm run tslint -- --fix",
"type-check": "tsc --noEmit",
"build": "tsc",
"clean": "clean-typescript-build .",
"prepublishOnly": "cross-env CI=true npm test && npm run build",
"postpublish": "npm run clean"
}
}