forked from yiminghe/async-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "async-validator",
"version": "3.5.2",
"description": "validate form asynchronous",
"typings": "typings/index.d.ts",
"keywords": [
"validator",
"validate",
"async"
],
"homepage": "https://github.com/yiminghe/async-validator",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/async-validator.git"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"pika-plugin-build-web-babel",
{
"format": "cjs"
}
],
[
"pika-plugin-build-web-babel"
],
[
"@pika/plugin-build-types"
],
[
"pika-plugin-clean-dist-src"
]
]
},
"jest": {
"collectCoverageFrom": [
"src/*"
]
},
"bugs": {
"url": "https://github.com/yiminghe/async-validator/issues"
},
"license": "MIT",
"config": {
"port": 8010
},
"scripts": {
"lint-staged": "lint-staged",
"prettier": "prettier --write \"{src,__tests__}/**/*.{js,tsx}\"",
"pub": "np --no-publish --no-release-draft && npm run build && npm publish pkg",
"build": "pika-pack build",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"coverage:gha": "jest --coverage",
"version": "npm run build"
},
"devDependencies": {
"@babel/preset-env": "^7.8.7",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-types": "^0.6.0",
"@pika/plugin-standard-pkg": "^0.6.0",
"@pika/types": "^0.6.0",
"babel-jest": "^24.8.0",
"coveralls": "^2.13.1",
"jest": "^24.8.0",
"lint-staged": "^7.2.0",
"np": "^5.0.3",
"pika-plugin-build-web-babel": "^0.8.0",
"pika-plugin-clean-dist-src": "^0.1.1",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1"
},
"lint-staged": {
"*.{tsx,js,jsx,ts}": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged"
]
}