-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 804 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 804 Bytes
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
{
"name": "outline-shadowsocksconfig",
"version": "0.2.1",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"test": "yarn build && jasmine --config=jasmine.json",
"clean": "rm -rf build/*.spec.* node_modules/"
},
"main": "./build/shadowsocks_config.js",
"types": "./build/shadowsocks_config.d.ts",
"devDependencies": {
"@types/jasmine": "^2.8.6",
"@types/node": "^8.0.41",
"@types/punycode": "2.1.0",
"clang-format": "^1.2.2",
"husky": "^1.3.1",
"jasmine": "^3.1.0",
"tslint": "^5.12.1",
"typescript": "^2.5.3"
},
"dependencies": {
"ipaddr.js": "^2.0.0",
"js-base64": "^3.5.2",
"punycode": "^1.4.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn tslint --fix 'src/**/*.ts' && yarn git-clang-format"
}
}
}