-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "formalist-serialize-react",
"version": "1.0.6",
"description": "",
"homepage": "https://github.com/icelab/formalist-serialize-react",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/icelab/formalist-serialize-react.git"
},
"keywords": [],
"authors": [
"Max Wheeler <[email protected]> (https://github.com/makenosound)",
"Tim Riley <[email protected]> (https://github.com/timriley)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/icelab/formalist-serialize-react/issues"
},
"scripts": {
"build": "babel --presets babel-preset-es2015 src --out-dir lib",
"prebuild": "npm run clean",
"clean": "rm -rf ./lib/*",
"test": "babel-node --presets babel-preset-es2015 test | faucet",
"lint": "eslint index.js test/*.js test/**/*.js",
"posttest": "npm run lint",
"watch": "nodemon --watch src --exec 'npm run build' --ext js"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"enzyme": "^2.7.1",
"eslint": "^2.3.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "2.3.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "4.2.0",
"eslint-plugin-standard": "^1.3.2",
"faucet": "0.0.1",
"jsdom": "8.1.0",
"nodemon": "^1.18.6",
"react-addons-test-utils": "15.4.2",
"tape": "4.5.1"
},
"dependencies": {
"formalist-compose": "^2.0.1 || ^3.0.2",
"formalist-data-object-renderer": "^1.0.3",
"immutable": "^3.7.6"
},
"peerDependencies": {
"react": ">=0.14.0 || ^15.0.0",
"react-dom": ">=0.14.0 || ^15.0.0"
}
}