forked from jurassix/react-validation-mixin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.07 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
{
"name": "react-validation-mixin",
"version": "5.3.0",
"description": "Simple Validation Mixin for React.",
"main": "./lib/index.js",
"scripts": {
"build": "npm run lint && npm run build:lib && npm run build:spec",
"build:lib": "mkdirp lib && babel src --out-dir lib",
"build:spec": "mkdirp lib/spec && babel spec --out-dir lib/spec",
"test": "karma start karma.conf.js --single-run",
"test-watch": "karma start karma.conf.js",
"clean": "rimraf lib",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build",
"precommit": "npm test && npm build",
"prepush": "npm test && npm build",
"postmerge": "npm install && npm build"
},
"repository": {
"type": "git",
"url": "https://github.com/jurassix/react-validation-mixin.git"
},
"keywords": [
"react-component",
"react",
"validation",
"validator",
"mixin",
"joi",
"schema"
],
"author": "jurassix (clinton.ayres@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jurassix/react-validation-mixin/issues"
},
"homepage": "https://github.com/jurassix/react-validation-mixin",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.0",
"babel-loader": "^5.3.2",
"babelify": "^6.2.0",
"browserify": "^11.0.1",
"chai": "^3.0.0",
"classnames": "^2.1.3",
"eslint": "^1.1.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.3.0",
"husky": "^0.8.1",
"joi": "^6.5.0",
"joi-validation-strategy": "0.3.0",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"lodash.set": "^3.7.4",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"react": "^0.14.0-beta3",
"react-addons-test-utils": "^0.14.0-beta3",
"react-dom": "^0.14.0-beta3",
"rimraf": "^2.4.3"
},
"dependencies": {
"he": "^0.5.0",
"invariant": "^2.1.0",
"lodash.get": "^3.7.0",
"lodash.isempty": "^3.0.4",
"lodash.result": "^3.1.2",
"react-display-name": "0.0.1"
}
}