This repository was archived by the owner on May 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.78 KB
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
{
"name": "vstack-validator",
"version": "3.1.0",
"description": "Declarative validator for complex deep structures",
"keywords": [],
"homepage": "https://github.com/vslinko/vstack-validator",
"bugs": {
"url": "https://github.com/vslinko/vstack-validator/issues",
"email": "vslinko@yahoo.com"
},
"license": "MIT",
"author": {
"name": "Vyacheslav Slinko",
"email": "vslinko@yahoo.com",
"url": "https://twitter.com/vslinko"
},
"main": "lib",
"repository": {
"type": "git",
"url": "vslinko/vstack-validator"
},
"scripts": {
"example-schema": "babel-node example/schema.js",
"example-conditionalSchema": "babel-node example/conditionalSchema.js",
"prepublish": "rm -rf lib && babel -d lib src",
"lint": "eslint example src test karma.conf.js",
"test": "karma start"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-export-extensions": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"better-log": "^1.3.3",
"chai": "^3.5.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "6.0.2",
"eslint-plugin-flowtype": "^2.1.0",
"eslint-plugin-react": "^4.1.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"karma": "^0.13.21",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-junit-reporter": "^0.3.8",
"karma-mocha": "^0.2.2",
"karma-webpack": "^1.7.0",
"lodash": "^4.6.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"webpack": "^1.12.14"
},
"peerDependencies": {
"lodash": "^4.6.0"
}
}