-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
74 lines (74 loc) · 1.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "microcule",
"version": "6.1.0",
"description": "SDK and CLI for managing multi-language microservices",
"main": "index.js",
"scripts": {
"test": "tap test/*.*"
},
"bin": {
"microcule": "./bin/microcule"
},
"author": "Marak Squires",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/stackvana/microcule.git"
},
"dependencies": {
"async": "^2.0.1",
"coffee-script": "^1.12.7",
"cron-parser": "^2.3.0",
"cross-spawn": "^5.0.0",
"hook.io-sdk": "^3.2.2",
"hyperquest": "^2.0.0",
"install": "^0.10.1",
"merge-params": "^1.1.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mschema": "^0.5.6",
"mustache": "^2.2.1",
"npm": "^5.5.1",
"parse-service-request": "1.3.x",
"resource-http": "^1.1.0",
"run-service": "3.x.x",
"shasum": "^1.0.2",
"stream-buffers": "^3.0.1",
"through2": "^2.0.1",
"tree-kill": "^1.1.0",
"view": "1.0.0"
},
"devDependencies": {
"basic-auth": "^1.1.0",
"colors": "*",
"express": "^4.14.0",
"gm": "^1.23.0",
"microcule-examples": "6.x.x",
"octonode": "^0.7.6",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"request": "^2.75.0",
"tap": "0.4.11",
"tape": "^4.6.0"
},
"nyc": {
"all": false,
"include": [
"lib/**/*.js"
],
"exclude": [
"coverage",
"locales",
"modules",
"reports",
"test",
"node_modules"
],
"reporter": [
"html",
"lcov",
"clover"
],
"report-dir": "./reports/coverage"
}
}