-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "react-form-base",
"version": "1.7.1",
"description": "React base Form component for flexible forms",
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"clear": "rimraf lib",
"rebuild": "npm run clear && npm run build",
"test": "mocha --compilers js:babel-register --require ./test/setup.js",
"test:watch": "npm test -- --watch",
"lint": "./node_modules/.bin/eslint src test demo/src --ext .js --ext .jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akuzko/react-form-base.git"
},
"files": [
"lib",
"src"
],
"keywords": [
"react",
"reactjs",
"react-component",
"form"
],
"author": "Artem Kuzko <a.kuzko@gmail.com> (https://github.com/akuzko)",
"license": "MIT",
"bugs": {
"url": "https://github.com/akuzko/react-form-base/issues"
},
"homepage": "https://github.com/akuzko/react-form-base#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.0",
"eslint-plugin-react": "^6.3.0",
"expect": "^1.20.2",
"jsdom": "^9.8.0",
"mocha": "^3.1.2",
"prop-types": "^15.5.7",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4"
},
"dependencies": {
"lodash.get": "^4.4.2",
"update-js": "^1.0.0"
},
"peerDependencies": {
"prop-types": "^15.5.7",
"react": "^0.14.8 || >=15.0.0",
"react-dom": "^0.14.8 || >=15.0.0"
}
}