-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "react-validation-utils",
"version": "1.3.10",
"description": "Validate react form components, based on their state",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "watch 'npm run build' src",
"build": "babel src -d build && babel types -d build --copy-files",
"test": "jest",
"prepush": "npm test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nullgr/react-validation-utils.git"
},
"keywords": [
"react",
"validation",
"validator"
],
"author": "Oleksandr Chernenko (ca@nullgr.com, akazimirkas@gmail.com)",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-flow"
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "2.3.1",
"husky": "^0.14.3",
"jest": "^24.8.0",
"prettier": "^1.10.2",
"watch": "^1.0.2"
},
"dependencies": {}
}