-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.66 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
{
"name": "dvalidator",
"version": "0.0.5",
"description": "A pure, extendable, very useful validator base Promise and Decorator",
"main": "lib/index.js",
"scripts": {
"build": "node build.js",
"test": "cross-env NODE_ENV=test jest",
"lint": "eslint *.js"
},
"files": [
"lib",
"index.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Zenser/dvalidator.git"
},
"keywords": [
"validator",
"decorator",
"decorators",
"validate",
"extendable"
],
"author": "张帅",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zenser/dvalidator/issues"
},
"homepage": "https://github.com/Zenser/dvalidator#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.6.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"minify": "^3.0.5",
"rollup": "^1.12.4",
"rollup-plugin-typescript2": "^0.24.1",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}