-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "node-transport-proxy",
"version": "1.0.2",
"description": "node透明代理",
"main": "./dist/index.js",
"bin": {
"ntp": "./bin/index.js"
},
"repository": "https://github.com/Lighting-Jack/node-transport-proxy",
"author": "Lighting-Jack",
"license": "MIT",
"scripts": {
"init": "commitizen init cz-conventional-changelog --save --save-exact",
"build": "tsc --outDir dist/ -p tsconfig.json",
"tsn": "ts-node --no-cache",
"release": "standard-version",
"pub": "git push --follow-tags origin master && npm publish",
"test": "jest"
},
"engines": {
"node": ">= 7.6.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@types/es6-promise": "^3.3.0",
"@types/node": "^10.12.14",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"commitizen": "^3.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.6.0",
"request-promise": "^4.2.2",
"standard-version": "^4.4.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"keywords": [
"node",
"proxy"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"colors": "^1.3.3",
"commander": "^2.19.0",
"dayjs": "^1.7.8",
"ora": "^3.0.0",
"update-notifier": "^3.0.0"
}
}