This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 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
{
"name": "react-form-fields",
"version": "1.3.5",
"description": "Reusable form elements to use in both redux-form and regular form",
"repository": "github:HealthByRo/react-form-fields",
"author": "Roman Health",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib/ src/ --ignore \"**/*.test.js\",\"**/*.stories.js\"",
"test": "jest --coverage",
"test:watch": "jest --watchAll",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore src/**",
"lint:js": "npm run lint:eslint -- src/ ",
"lint:staged": "lint-staged",
"prerelease": "git checkout develop",
"release": "npm version",
"postrelease": "git push && git push --tags && git checkout master && git merge develop && git push && git checkout develop"
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.45.0",
"lint-staged": "^3.4.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4"
},
"homepage": "https://github.com/HealthByRo/react-form-fields/",
"engines": {
"node": ">=14"
}
}