-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "formera",
"version": "2.0.0-alpha.8",
"description": "Forms in React - the way you want it",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run clean && babel src/ -d lib/",
"clean": "rimraf lib",
"lint": "eslint --ext .js,.jsx .",
"_pretest": "npm run --silent lint",
"test": "jest -e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openmist/formera.git"
},
"keywords": [
"react",
"reactjs",
"form",
"forms",
"formera",
"validation"
],
"author": "Alexander Liljengård <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/openmist/formera",
"devDependencies": {
"airbnb-js-shims": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"in-publish": "^2.0.0",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "~16.2.0",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": ">=0.14",
"prop-types": "latest"
},
"dependencies": {
"fast-deep-equal": "^1.1.0"
},
"jest": {
"setupFiles": [
"<rootDir>/test/setupTest.js"
]
}
}