-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
34 lines (34 loc) · 965 Bytes
/
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
{
"name": "react-custom-validation",
"version": "0.5.7",
"description": "React form validation library. Great UX, lot of flexibility.",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vacuumlabs/react-validation.git"
},
"scripts": {
"build": "rm -rf dist; babel lib --out-dir dist --copy-files",
"eslint": "eslint .",
"prepublish": "npm run eslint && npm run build",
"watch": "rm -rf dist; babel lib --out-dir dist --copy-files --watch"
},
"dependencies": {
"immutability-helper": "^2.0.0",
"lodash": "^4.14.1"
},
"peerDependencies": {
"react": ">=15 <=16"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.2.2",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-react": "^6.6.0"
}
}