-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "paz-service-directory",
"version": "0.0.1",
"description": "A catalog of services with versioned config for running as Docker containers with systemd",
"main": "server.js",
"scripts": {
"lint": "eslint .",
"codestyle": "jscs -p google bin/ lib/ middleware/ resources/ server.js",
"test": "docker-compose build && docker-compose up -d && sleep 3 && lab && docker-compose stop",
"docs": "mkdir -p docs/generated && aglio -i docs/api-blueprint.md -o docs/generated/index.html",
"docs-server": "st -p 9002 -d docs/generated -i index.html"
},
"keywords": [
"paas",
"paz",
"fleet"
],
"author": "Luke Bond <[email protected]>",
"dependencies": {
"argh": "^0.1.1",
"bunyan": "^0.22.3",
"error-plus": "0.0.1",
"ini": "^1.1.0",
"joi": "^4.0.0",
"leveldown": "^0.10.2",
"levelup": "^0.18.2",
"restify": "^2.7.0"
},
"devDependencies": {
"aglio": "^1.14.0",
"eslint": "^0.21.2",
"expectations": "^0.2.5",
"jscs": "^1.13.1",
"json-override": "^0.1.2",
"lab": "^4.4.4",
"mocha": "^1.18.2",
"precommit-hook": "^1.0.7",
"st": "^0.5.1",
"supertest": "^0.12.0"
},
"precommit": [
"lint",
"codestyle"
],
"license": "ISC"
}