-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "smake",
"version": "0.5.1",
"description": "Typescript Module Template",
"license": "MIT",
"repository": "",
"author": {
"name": "Yu Chen",
"email": "[email protected]",
"url": "https://yu.chen.news"
},
"keywords": [
"typescript",
"generator",
"node",
"module",
"javascript",
"js"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"bin": {
"smake": "./lib/bin.js"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty && chmod +x lib/bin.js && cp src/win_delay_load_hook.cc lib/win_delay_load_hook.cc",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"devDependencies": {
"@types/download": "^6.2.4",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/tar": "^4.0.4",
"coveralls": "^3.0.2",
"jest": "^26.6.3",
"node-addon-api": "^3.2.0",
"prettier": "^2.3.0",
"rimraf": "^2.6.2",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"axios": "^0.21.1",
"colors": "^1.4.0",
"commander": "^2.20.0",
"comment-json": "^4.1.1",
"download": "^8.0.0",
"tar": "^6.1.0"
}
}