This repository has been archived by the owner on May 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
86 lines (86 loc) · 2.42 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
81
82
83
84
85
86
{
"name": "react-validation-mixin",
"version": "5.4.0",
"description": "Simple Validation Mixin for React.",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run lint && npm run build:lib && npm run build:spec",
"build:lib": "mkdirp lib && babel src -d lib",
"build:spec": "mkdirp lib/spec && babel spec -d 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 ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/jurassix/react-validation-mixin/issues"
},
"homepage": "https://github.com/jurassix/react-validation-mixin",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"chai": "^3.0.0",
"classnames": "^2.1.3",
"eslint": "^2.12.0",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"husky": "^0.11.4",
"joi": "^8.4.2",
"joi-validation-strategy": "0.3.3",
"karma": "^0.13.9",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.0.1",
"lodash.set": "^4.2.0",
"mkdirp": "^0.5.1",
"mocha": "^2.2.5",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.1.0",
"rimraf": "^2.4.3",
"watchify": "^3.7.0",
"webpack": "^1.13.1"
},
"dependencies": {
"invariant": "^2.1.0",
"lodash.flatten": "^4.2.0",
"lodash.get": "^4.3.0",
"lodash.isempty": "^4.2.1",
"lodash.result": "^4.4.0",
"lodash.values": "^4.1.0",
"react-display-name": "0.2.0"
}
}