-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "matic",
"description": "Automated HTML documentation for JSON schemas",
"version": "0.5.2",
"keywords": [
"JSON",
"schema",
"documentation",
"tool"
],
"author": {
"name": "Matthew O'Donoghue"
},
"main": "./lib/matic.js",
"bin": "./bin/matic",
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "https://github.com/mattyod/matic"
},
"bugs": {
"url": "https://github.com/mattyod/matic/issues"
},
"dependencies": {
"col": "0.1.0",
"rightclick": "0.7.1",
"underscore": "1.6.0"
},
"devDependencies": {
"sinon": "1.10.3",
"mocha": "1.21.4",
"chai": "1.9.1",
"sinon-chai": "2.5.0",
"jade": "1.5.0",
"jshint": "2.5.3",
"jscs": "1.5.9"
},
"scripts": {
"hooks": "chmod +x hooks/*; cd .git/hooks && ln -sf ../../hooks/* .",
"lint": "node ./node_modules/jshint/bin/jshint ./",
"jscs": "node ./node_modules/jscs/bin/jscs ./",
"unit": "mocha test/unit",
"test": "npm run lint && npm run jscs && npm run unit"
}
}