-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "input-validator-react",
"version": "1.0.3",
"description": "A simple synchronous validator for form-inputs in React.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/isahgaga/react-validator.git"
},
"keywords": [
"form",
"input",
"validator"
],
"author": "Isa Ibrahim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/isahgaga/react-validator/issues"
},
"homepage": "https://github.com/isahgaga/react-validator#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.2",
"babel-loader": "7.1.4",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"eslint": "4.18.2",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.7.0",
"eslint-watch": "3.1.3",
"prop-types": "15.6.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"webpack": "4.1.1"
},
"scripts": {
"build": "babel src -d build",
"lint": "eslint lib/**; exit 0",
"lint:watch": "esw -w lib/**",
"prepublish": "npm run build"
}
}