This repository has been archived by the owner on Jan 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "react-reform",
"version": "1.2.0",
"description": "A React Form Toolkit",
"scripts": {
"start": "echo 'Make sure to `cd samples && npm install`' && cd samples && npm run dev",
"lint": "eslint --max-warnings 1 src/*.js src/**/*.js",
"build-lib": "NODE_ENV=production babel ./src -d . --ignore __tests__",
"clean": "rm -rf opt/ && rm *.js",
"test": "NODE_ENV=test jest",
"test-watch": "NODE_ENV=test jest --watch",
"prepublish": "npm run lint && npm run test && npm run build-lib",
"postpublish": "npm run clean"
},
"keywords": [
"react",
"forms",
"form",
"validation",
"themes"
],
"author": "Daniel Berndt",
"homepage": "http://react-reform.codecks.io/",
"license": "ISC",
"repository": "codecks-io/react-reform",
"files": [
"*.js",
"*.md",
"opt"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "6.17.0",
"babel-eslint": "7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-dev-expression": "^0.2.1",
"babel-preset-react-app": "2.0.1",
"eslint": "3.8.1",
"eslint-config-react-app": "0.5.0",
"eslint-plugin-flowtype": "2.21.0",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
"jest": "^18.1.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"jest": {
"verbose": true,
"testPathDirs": [
"src"
],
"globals": {
"__DEV__": true
}
},
"dependencies": {
"prop-types": "^15.6.0"
}
}