-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.04 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.04 KB
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
94
{
"name": "antd-react-form-builder",
"version": "0.6.9",
"description": "A form-builder based on Ant Design UI",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"core-decorators": "^0.12.0",
"cross-env": "^3.1.3",
"css-loader": "^0.23.0",
"enzyme": "^2.6.0",
"enzyme-to-json": "^1.5.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.8.5",
"fs-extra": "^0.30.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-compress": "^1.3.0",
"grunt-webpack": "^2.0.1",
"html-webpack-plugin": "^2.22.0",
"jest": "^19.0.2",
"node-sass": "^3.13.1",
"react-addons-test-utils": "^15.4.1",
"react-codemirror": "^0.3.0",
"react-hot-loader": "^3.0.0-beta.5",
"react-test-renderer": "^15.4.1",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.8.3",
"webpack-dev-server": "^2.4.1",
"antd": "^2.13.7",
"webpack-hot-middleware": "^2.13.0"
},
"dependencies": {
"form-serialize": "^0.7.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"object.assign": "^4.0.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"sprintf-js": "^1.0.3"
},
"scripts": {
"start": "cross-env NODE_ENV=development node server.js",
"build-demo": "cross-env NODE_ENV=production grunt",
"build":
"npm run build-es && npm run build-default && node-sass style/css/style.scss lib/style/style.css",
"build-es":
"cross-env BABEL_ENV=es babel ./src -d es --ignore spec.js,test.js",
"build-default":
"cross-env BABEL_ENV=default babel ./src -d lib --ignore spec.js,test.js",
"build-default-watch":
"cross-env BABEL_ENV=default babel ./src -d lib -w --ignore spec.js,test.js",
"build-es-watch": "cross-env BABEL_ENV=es babel ./src -d es -w",
"updateSnapshot": "cross-env NODE_ENV=default jest --updateSnapshot",
"test": "cross-env NODE_ENV=default jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dog-days/antd-react-form-builder.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dog-days/antd-react-form-builder/issues"
},
"homepage": "https://github.com/dog-days/react-react-form-builder#readme",
"jest": {
"setupFiles": ["./tests/setup.js"],
"moduleFileExtensions": ["js", "jsx"],
"testPathIgnorePatterns": ["/node_modules/", "/lib/", "/es/", "/demo/"],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/es/",
"/demo/",
"/test/"
],
"snapshotSerializers": ["enzyme-to-json/serializer"]
}
}