-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.49 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": "react-formstate",
"version": "0.6.14",
"peerDependencies": {
"react": ">=0.13.0"
},
"description": "An API to manage your form state... Supports form validation. Efficient form development with no substantive downside.",
"main": "react-formstate.js",
"scripts": {
"build": "babel react-formstate.es6 -o react-formstate.js",
"test": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
"pretest": "npm run build",
"localtest": "mocha",
"prelocaltest": "npm run build",
"prepublishOnly": "npm run localtest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtrelogan/react-formstate.git"
},
"keywords": [
"react",
"form",
"validation",
"state",
"validate",
"validated",
"framework",
"async",
"asynchronous",
"forms",
"api",
"bootstrap",
"setState",
"redux"
],
"author": "daniel trelogan",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtrelogan/react-formstate/issues"
},
"homepage": "https://github.com/dtrelogan/react-formstate#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"create-react-class": "^15.6.3",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}