-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 964 Bytes
/
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
{
"name": "pocket-schema",
"version": "1.1.0",
"description": "Object schema and validation",
"main": "index.js",
"author": "Patrick R",
"license": "MIT",
"repository": "patrixr/pocket-schema",
"files": [
"*.js",
"**/*.js"
],
"scripts": {
"test": "nyc mocha --colors test/*.test.js",
"test:watch": "mocha --bail --colors --watch test/*.test.js",
"tsc": "tsc",
"prepublish": "npm run tsc",
"document": "node scripts/document.js && doctoc ./README.md"
},
"keywords": [
"schema",
"validation",
"model",
"types"
],
"devDependencies": {
"@types/lodash": "^4.14.119",
"@types/node": "^10.12.18",
"@types/require-dir": "^1.0.0",
"chai": "^4.2.0",
"doctoc": "^1.4.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"typescript": "^3.2.2"
},
"dependencies": {
"is-css-color": "^1.0.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"require-dir": "^1.2.0"
}
}