forked from Tencent/TSW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "@tswjs/tsw",
"version": "1.2.2",
"description": "A Node.js infrastructure which is designed for improving the efficiency of locating problems, providing multiple functions for front-end developers",
"scripts": {
"lint": "eslint examples bin test --fix",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "mocha --recursive test/bin",
"coverage": "nyc --reporter=lcov --reporter=text npm test && codecov",
"optional": "npm i heapdump && npm i v8-profiler"
},
"bin": {
"tsw": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tencent/TSW.git"
},
"dependencies": {
"archiver": "~0.16.0",
"cookie": "~0.3.1",
"i18n": "^0.8.3",
"memcached": "~0.2.8",
"qs": "~6.5.1",
"ws": "~2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/travis-cli": "^6.2.0",
"babel-eslint": "^8.2.3",
"chai": "^4.1.2",
"codecov": "^3.0.2",
"eslint": "^4.10.0",
"eslint-config-alloy": "^1.4.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"plug": "file:./bin/plug",
"sinon": "^4.1.2"
},
"keywords": [
"TSW"
],
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"bin/tsw/"
]
}
}