forked from scotthovestadt/schema-object
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "schema-object",
"version": "4.0.11",
"description": "Enforce schema on JavaScript objects, including type, transformation, and validation. Supports extends, sub-schemas, and arrays.",
"main": "dist/schemaobject.js",
"scripts": {
"test": "gulp test-node",
"build": "gulp build",
"prepublish": "in-publish && gulp build || not-in-publish"
},
"types": "./typescript/schemaobject.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist",
"typescript"
],
"repository": {
"type": "git",
"url": "[email protected]:scotthovestadt/schema-object.git"
},
"keywords": [
"javascript",
"schema",
"extends",
"type",
"transformation",
"validation",
"object",
"array"
],
"dependencies": {
"babel-polyfill": "^6.26.0",
"harmony-reflect": "^1.6.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-preset-es2015": "6.24.1",
"gulp": "3.9.1",
"gulp-babel": "7.0.1",
"gulp-mocha": "6.0.0",
"gulp-mocha-phantomjs": "0.12.2",
"in-publish": "^2.0.0",
"load-plugins": "2.1.2",
"minimist": "1.2.0",
"should": "13.x.x"
},
"author": "Scott Hovestadt",
"license": "BSD",
"readmeFilename": "README.md",
"engines": {
"node": ">=0.11"
}
}