-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "js-data-schema",
"description": "Define and validate rules, datatypes and schemata in Node and in the browser.",
"version": "1.2.5",
"homepage": "http://www.js-data.io/docs/js-data-schema",
"repository": {
"type": "git",
"url": "https://github.com/js-data/js-data-schema.git"
},
"author": {
"name": "Jason Dobry",
"url": "http://www.pseudobry.com",
"email": "[email protected]"
},
"main": "./dist/js-data-schema.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"keywords": [
"validate",
"validator",
"datatype",
"model",
"schema",
"schemata",
"rule",
"object"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/js-data/js-data-schema/blob/master/LICENSE"
}
],
"readmeFilename": "README.md",
"dependencies": {
"mout": "0.11.0"
},
"devDependencies": {
"babel-core": "5.4.7",
"babel-loader": "5.1.3",
"chai": "2.3.0",
"grunt": "0.4.5",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-uglify": "0.9.1",
"grunt-contrib-watch": "0.6.1",
"grunt-karma": "0.11.0",
"grunt-karma-coveralls": "2.5.3",
"grunt-mocha-test": "0.12.7",
"grunt-webpack": "1.0.8",
"jit-grunt": "0.9.1",
"jshint": "2.8.0",
"jshint-loader": "0.8.3",
"karma": "0.12.35",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.1.12",
"karma-coverage": "0.3.1",
"karma-firefox-launcher": "0.1.6",
"karma-mocha": "0.1.10",
"karma-phantomjs-launcher": "0.2.0",
"karma-script-launcher": "0.1.0",
"karma-sinon": "1.0.4",
"karma-spec-reporter": "0.0.19",
"mocha": "2.2.5",
"sinon": "1.14.1",
"time-grunt": "1.2.1",
"webpack": "1.9.10",
"webpack-dev-server": "1.9.0"
},
"bugs": {
"url": "https://github.com/js-data/js-data-schema/issues",
"email": "[email protected]"
},
"scripts": {
"test": "grunt test"
}
}