forked from Tencent/TSW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.99 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
71
72
73
74
75
{
"name": "@tswjs/tsw",
"version": "2.0.0-alpha.10",
"description": "A Node.js infrastructure which is designed for improving the efficiency of locating problems, providing multiple functions for front-end developers",
"main": "dist/index.js",
"bin": "dist/cli.js",
"scripts": {
"commitlint": "commitlint --color",
"test": "jest --coverage",
"build": "tsc",
"dev": "tsc --watch --sourceMap",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"postinstall": "patch-package",
"prepublishOnly": "rm -rf patches",
"benchmark": "cd benchmark && make"
},
"repository": {
"type": "git",
"url": "https://github.com/Tencent/TSW.git"
},
"keywords": [
"tsw"
],
"engines": {
"node": ">= 12.0.0"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^9.1.0",
"@commitlint/config-conventional": "^7.5.0",
"@types/ip": "^1.1.0",
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.149",
"@types/node": "^11.9.5",
"@types/yargs": "^13.0.3",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^18.0.1",
"husky": "^1.3.1",
"jest": "^26.0.0",
"lint-staged": "^8.1.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.0.2",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e .git/COMMIT_EDITMSG",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint:fix",
"git add"
]
},
"dependencies": {
"chalk": "^3.0.0",
"ip": "^1.1.5",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"winston": "^3.2.1",
"winston-transport": "^4.3.0",
"yargs": "^15.3.1"
}
}