-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 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
{
"name": "formerly",
"version": "0.5.2",
"description": "yet another form abstraction library for react",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"prepublish": "rimraf lib && babel src --out-dir lib",
"watch": "watchify --debug -v -t babelify examples/complex-form.js -o examples/bundle.js",
"start": "st --no-cache --dir examples --index index.html",
"test": "mocha --compilers js:babel-core/register tests",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisamaral/formerly.git"
},
"bugs": {
"url": "https://github.com/chrisamaral/formerly/issues"
},
"homepage": "https://github.com/chrisamaral/formerly",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"chai": "^3.4.1",
"eslint": "^1.10.1",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.2.1",
"eslint-plugin-react": "^3.10.0",
"eslint-plugin-standard": "^1.3.1",
"jsdom": "^7.0.2",
"mocha": "^2.3.4",
"react-dom": "^0.14.3",
"rimraf": "^2.4.4",
"st": "^1.0.0",
"watchify": "^3.6.1"
},
"dependencies": {
"assign-deep": "^0.4.2",
"curry": "^1.2.0",
"debounce": "^1.0.0",
"emmett": "^3.1.1",
"object-assign": "^4.0.1",
"object-path": "^0.9.2",
"object.omit": "^2.0.0"
},
"peerDependencies": {
"react": "^0.14.6"
},
"keywords": [
"react",
"form"
]
}