forked from Limenius/liform-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
{
"name": "liform-react",
"version": "0.6.9",
"description": "Generate forms from json-schema to use with React (and redux-form)",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/liform.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/liform.min.js",
"lint": "eslint src",
"test": "mocha --compilers js:babel-register --recursive 'src/**/__tests__/*' --require src/__tests__/setup.js",
"test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
"dev": "webpack-dev-server --content-base examples --config examples/webpack.config.js --inline --hot"
},
"keywords": [
"react",
"json-schema",
"form",
"redux-form"
],
"repository": {
"type": "git",
"url": "https://github.com/limenius/liform-react.git"
},
"author": "Nacho Martin",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.3.26",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"cross-env": "^3.1.4",
"enzyme": "^2.7.1",
"eslint": "^3.5.0",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^6.9.0",
"expect": "^1.20.2",
"jsdom": "^9.11.0",
"mocha": "^3.0.2",
"nyc": "^10.1.2",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-form": "^6.0.2",
"sinon": "^1.17.7",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"ajv": "^5.2.2",
"classnames": "^2.2.5",
"deepmerge": "^1.4.4",
"lodash": "^4.10.0",
"prop-types": "^15.5.10",
"redux-form": "^6.0.2"
}
}