forked from godaddy/react-validation-context
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.84 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
72
73
74
75
76
77
78
79
80
{
"name": "react-validation-context",
"version": "4.0.0",
"description": "Components for providing validation via React context",
"author": "GoDaddy Operating Company, LLC",
"contributors": [
"Stanley Zhang <sxzhang@godaddy.com>"
],
"license": "MIT",
"keywords": [
"react",
"validation",
"context"
],
"main": "./lib",
"browser": "./lib",
"module": "./index",
"react-native": "./index",
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"text",
"html"
]
},
"scripts": {
"build": "babel *.js -d lib",
"lint": "eslint --fix *.js test",
"pretest": "eslint *.js test",
"test": "nyc mocha test/**/*.test.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:godaddy/react-validation-context"
},
"bugs": {
"url": "https://github.com/godaddy/react-validation-context/issues"
},
"homepage": "https://github.com/godaddy/react-validation-context#readme",
"babel": {
"presets": [
"react",
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"assume": "^2.1.0",
"assume-sinon": "^1.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^4.17.0",
"eslint-config-godaddy-react": "^2.2.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.6.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"prop-types": "^15.0.0",
"react": "^15.0.0",
"react-test-renderer": "^15.0.0",
"sinon": "^6.3.5"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
}
}