forked from react-component/form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.09 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": "rc-form",
"version": "2.1.6",
"description": "React High Order Form Component",
"keywords": [
"react",
"react-component",
"react-form",
"form"
],
"homepage": "https://github.com/react-component/form",
"author": "yiminghe@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/react-component/form.git"
},
"bugs": {
"url": "https://github.com/react-component/form/issues"
},
"files": [
"lib",
"es",
"dist",
"assets/*.css"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"config": {
"port": 8000,
"entry": {
"rc-form": [
"./scripts/index.js"
]
}
},
"scripts": {
"build": "rc-tools run build",
"compile": "rc-tools run compile --babel-runtime",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"lint:fix": "rc-tools run lint --fix",
"test": "jest",
"prepublish": "rc-tools run guard",
"coverage": "jest --coverage"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
],
"collectCoverageFrom": [
"src/**/*"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"devDependencies": {
"antd": "2.x",
"async": "^1.5.2",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"jest": "^21.2.1",
"pre-commit": "1.x",
"rc-tools": "6.x",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-test-renderer": "^16.1.1",
"history": "^1.16.0",
"prop-types": "^15.5.10",
"react-redux": "^4.0.0",
"react-router": "^3.0.0",
"redux": "^3.0.4"
},
"pre-commit": [
"lint"
],
"dependencies": {
"async-validator": "1.x",
"babel-runtime": "6.x",
"create-react-class": "^15.5.3",
"dom-scroll-into-view": "1.x",
"hoist-non-react-statics": "^2.3.1",
"lodash": "^4.17.4",
"warning": "^3.0.0"
}
}