-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "vlad",
"version": "2.0.0",
"description": "JSON schema validation with a chainable syntax.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"prepublish": "in-publish && npm run test || not-in-publish",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"postpublish": "git push origin master --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nickclaw/vlad"
},
"keywords": [
"jsonschema",
"validate",
"resolve",
"schema",
"json"
],
"author": {
"name": "Nicholas Clawson",
"url": "http://nickclaw.com"
},
"contributors": [
{
"name": "Holden Stegman"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nickclaw/vlad/issues"
},
"homepage": "https://github.com/nickclaw/vlad",
"dependencies": {
"lodash": "^4.11.2",
"tv4": "^1.1.9"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
"in-publish": "^2.0.0",
"mocha": "^2.0.1",
"require-new": "^1.1.0"
}
}