forked from yiminghe/async-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "async-validator",
"version": "1.10.0",
"description": "validate form asynchronous",
"keywords": [
"validator",
"validate",
"async"
],
"homepage": "http://github.com/yiminghe/async-validator",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/async-validator.git"
},
"files": [
"lib",
"es"
],
"main": "./lib/index",
"module": "./es/index",
"jest": {
"collectCoverageFrom": [
"src/*"
],
"transform": {
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"bugs": {
"url": "http://github.com/yiminghe/async-validator/issues"
},
"licenses": "MIT",
"config": {
"port": 8010
},
"scripts": {
"build": "rc-tools run build",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"test": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"coveralls": "^2.13.1",
"jest": "20.x",
"pre-commit": "1.x",
"rc-tools": "6.x"
},
"pre-commit": [
"lint"
],
"dependencies": {
"babel-runtime": "6.x"
}
}