forked from derekstavis/react-vanilla-form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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": "react-vanilla-form",
"version": "0.5.1",
"description": "An unobstrusive form serializer and validator that works by following standards.",
"keywords": [
"react",
"form",
"validation",
"serialization"
],
"main": "dist/index.js",
"repository": "https://github.com/derekstavis/react-vanilla-form.git",
"author": "Derek Stavis",
"license": "MIT",
"private": false,
"files": [
"src/index.js",
"dist/index.js"
],
"scripts": {
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"styleguide:deploy": "gh-pages -d styleguide",
"build": "mkdir -p dist; babel src/index.js --out-file dist/index.js",
"test": "jest --coverage --coverageReporters=json"
},
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*"
},
"dependencies": {
"ramda": "0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-react-app": "^2.1.0",
"gh-pages": "^1.1.0",
"jest": "^23.1.0",
"milligram": "^1.3.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-styleguidist": "^6.1.0",
"regenerator-runtime": "^0.11.1",
"style-loader": "^0.19.1",
"webpack": "^3.10.0"
}
}