-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.77 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "onion-form",
"version": "0.4.0",
"description": "onion-form",
"typings": "index",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:lib",
"build:lib": "cross-env BABEL_ENV=build babel src --out-dir lib",
"clean": "rimraf lib",
"eslint": "./scripts/eslint.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueberryapps/onion-form.git"
},
"keywords": [
"validation"
],
"author": "Blueberry Apps",
"license": "ISC",
"bugs": {
"url": "https://github.com/blueberryapps/onion-form/issues"
},
"homepage": "https://github.com/blueberryapps/onion-form/tree/master#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.11.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-template": "^6.8.0",
"cross-env": "^5.2.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsdoc": "^3.7.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-require-jsdoc": "^1.0.4",
"eslint-plugin-standard": "^3.1.0",
"flow-bin": "^0.74.0",
"immutable": "^3.8.1",
"jest": "^23.1.0",
"jsdoc": "^3.5.5",
"raf": "^3.4.0",
"react-test-renderer": "^16.4.1",
"recursive-readdir": "^2.2.2",
"rimraf": "^2.5.4"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"tmp": "0.0.33"
},
"peerDependencies": {
"immutable": ">=3",
"react": "^16.4.1",
"react-redux": "^5.0.2",
"redux": "^4.0.0"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/scripts/setupTests.js",
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
}
}