-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.72 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": "mini-service",
"version": "4.2.0",
"description": "Micro services done simply. Choose to run them locally or remotely",
"author": "feugy <damien.feugas@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/feugy/mini-service",
"repository": {
"type": "git",
"url": "https://github.com/feugy/mini-service"
},
"main": "./lib/index",
"scripts": {
"doc": "docma",
"doc:serve": "docma serve",
"doc:watch": "chokidar . -c \"npm run doc\" -i .git -i coverage -i docs -i node_modules & npm run doc:serve",
"nsp": "nsp check",
"lint": "eslint . --fix",
"prepush": "npm run nsp & npm test",
"submit-coverage": "cat coverage/lcov.info | coveralls -v",
"test": "lab test",
"update-deps": "next-update -k true --tldr"
},
"dependencies": {
"boom": "~7.2.0",
"crc32": "~0.2.2",
"hapi": "~17.3.1",
"hapi-swagger": "~9.1.1",
"hoek": "~5.0.3",
"inert": "~5.1.0",
"joi": "~13.1.2",
"mini-client": "~4.1.0",
"mini-service-utils": "~3.0.1",
"vision": "~5.3.2"
},
"devDependencies": {
"benchmark": "~2.1.4",
"bl": "~1.2.2",
"chokidar-cli": "^1.2.0",
"coveralls": "~3.0.0",
"docma": "git+http://github.com/feugy/docma.git",
"eslint": "~4.19.1",
"eslint-config-standard": "~11.0.0",
"eslint-plugin-import": "~2.11.0",
"eslint-plugin-node": "~6.0.1",
"eslint-plugin-promise": "~3.7.0",
"eslint-plugin-standard": "~3.0.1",
"husky": "~0.14.3",
"lab": "~15.4.1",
"lab-espower-transformer": "~2.0.1",
"moment": "~2.22.0",
"multistream": "~2.1.0",
"next-update": "~3.6.0",
"nsp": "~3.2.1",
"power-assert": "~1.5.0",
"request": "~2.85.0",
"request-promise": "~4.2.2"
}
}