-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 KB
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
{
"name": "furry-cactus",
"version": "2.0.1",
"description": "scripts to take swarm information and distribute it to other services",
"main": "index.js",
"scripts": {
"lint": "standard --verbose",
"start": "node index.js",
"test": "npm run lint && npm run unit",
"unit": "mocha $npm_package_options_mocha test"
},
"options": {
"mocha": "--recursive --reporter spec --bail --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeNow/furry-cactus.git"
},
"author": "Bryan Kendall <bryan@runnable.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/CodeNow/furry-cactus/issues"
},
"homepage": "https://github.com/CodeNow/furry-cactus#readme",
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"dependencies": {
"101": "^1.5.0",
"aws-sdk": "^2.3.6",
"bluebird": "^3.3.5",
"dockerode": "^2.2.10",
"swarmerode": "^3.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.0",
"standard": "^6.0.8"
}
}