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 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
{
"name": "strulidator",
"version": "1.2.1",
"description": "Declarative validator for complex deep structures.",
"keywords": [
"validation",
"validator",
"schema"
],
"homepage": "https://github.com/vslinko/strulidator",
"bugs": {
"url": "https://github.com/vslinko/strulidator/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Vyacheslav Slinko",
"email": "[email protected]",
"url": "https://twitter.com/vslinko"
},
"contributors": [],
"main": "dist",
"bin": {},
"repository": {
"type": "git",
"url": "vslinko/strulidator"
},
"scripts": {
"lint": "eslint lib test *.js",
"test": "rm -rf coverage && karma start",
"build": "rm -rf dist && babel lib -d dist",
"prepublish": "npm run lint && npm run test && npm run build"
},
"config": {},
"dependencies": {
"lodash": "3.9.3"
},
"devDependencies": {
"babel": "5.5.8",
"babel-core": "5.5.8",
"babel-eslint": "3.1.17",
"babel-loader": "5.1.4",
"babel-runtime": "5.5.8",
"chai": "3.0.0",
"chai.assert": "1.0.0",
"codecov.io": "0.1.2",
"eslint": "0.23.0",
"eslint-plugin-react": "2.5.2",
"isparta-loader": "0.2.0",
"karma": "0.12.36",
"karma-chrome-launcher": "0.1.12",
"karma-coverage": "0.4.2",
"karma-mocha": "0.1.10",
"karma-webpack": "1.5.1",
"mocha": "2.2.5",
"node-libs-browser": "0.5.2",
"webpack": "1.9.11"
},
"peerDependencies": {},
"bundledDependencies": [],
"optionalDependencies": {},
"engines": {},
"os": [],
"cpu": [],
"preferGlobal": false,
"private": false,
"publishConfig": {}
}