-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 1.97 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
65
66
67
68
69
70
71
{
"name": "react-form-ex",
"version": "1.2.1",
"description": "a simple react-form that uses simple-form-validator for validating form fields",
"main": "./lib/index.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-form-ex.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-form-ex.min.js",
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min && node ./prepublish",
"clean": "rimraf lib dist coverage",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build",
"test": "mocha --compilers js:babel-register --recursive ",
"test:watch": "npm test -- --watch",
"test:cov": "babel-node ./node_modules/isparta/bin/isparta cover ./node_modules/mocha/bin/_mocha -- --recursive"
},
"repository": {},
"files": [
"dist",
"lib",
"src"
],
"keywords": [
"validator",
"form",
"form provider",
"react"
],
"author": "sam",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta9",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.3.13",
"cross-env": "^1.0.7",
"es3ify": "^0.2.0",
"eslint": "^1.7.1",
"expect": "^1.8.0",
"glob": "^6.0.4",
"isparta": "4.0.0",
"istanbul": "^0.3.17",
"jsdom": "~8.1.0",
"mocha": "^2.4.5",
"chai": "^3.5.0",
"rimraf": "^2.3.4",
"webpack": "^1.11.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"prop-types": "^15.7.2"
},
"dependencies": {
"simple-form-validator": "^1.1.0"
},
"browserify": {
"transform": [
"loose-envify"
]
}
}