forked from danielgtaylor/aglio
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.53 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
{
"name": "aglio",
"version": "2.3.0",
"description": "An API Blueprint renderer with theme support",
"main": "lib/main.js",
"bin": {
"aglio": "./bin/aglio.js"
},
"config": {
"coverage_timeout": 10000
},
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "coffee -o lib -c src",
"coverage": "npm run coverage:html",
"coverage:text": "npm run build && c8 mocha -t $npm_package_config_coverage_timeout",
"coverage:html": "npm run coverage:text && c8 -r html report",
"coveralls": "npm run coverage:text && c8 -r text-lcov report | coveralls",
"gen:examples": "npm run compile && ./scripts/generate-examples",
"lint": "coffeelint src test",
"prepare": "npm run compile",
"test": "npm run build && mocha"
},
"author": "Daniel G. Taylor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danielgtaylor/aglio"
},
"bugs": {
"url": "https://github.com/danielgtaylor/aglio/issues"
},
"keywords": [
"api",
"blueprint",
"protagonist",
"snowcrash",
"html",
"parse",
"markdown"
],
"dependencies": {
"aglio-theme-olio": "github:Gasol/aglio-theme-olio#lib",
"chokidar": "^2.1.5",
"cli-color": "^1.1.0",
"drafter": "^2.0.0-pre.1",
"pretty-error": "^1.2.0",
"serve-static": "^1.10.0",
"socket.io": "^2.2.0",
"yargs": "^3.31.0"
},
"devDependencies": {
"c8": "^4.1.5",
"coffeelint": "^2.1.0",
"coveralls": "^3.0.3",
"mocha": "^6.1.4",
"sinon": "^7.3.2"
}
}