-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "@comparamejor/cm-form",
"version": "1.2.15",
"description": "Easy antd forms managements for little and large projects",
"main": "FormData.js",
"author": "comparamejor",
"homepage": "https://github.com/danjavia/cm-form",
"repository": {
"type": "git",
"url": "https://github.com/danjavia/cm-form.git"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.0.3",
"enzyme": "2.8.0",
"enzyme-adapter-react-15": "^1.0.3",
"react-addons-test-utils": "^15.6.2",
"webpack": "^3.8.1"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"scripts": {
"test": "jest -u",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js"
},
"keywords": [
"react",
"react-component"
],
"dependencies": {
"antd": "^2.10.4",
"jest": "^21.2.1"
},
"jest": {
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"setupTestFrameworkScriptFile": "<rootDir>/config.js"
}
}