forked from acuminous/bosco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.34 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "bosco",
"version": "0.5.29",
"description": "Bosco will take care of your microservices, just don't try and use him on a plane.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "f(){ if [ \"$#\" -gt 0 ]; then npm run testonly -- \"$@\"; else npm run check-coverage; fi; };f",
"testonly": "mocha",
"coverage": "istanbul cover --include-all-sources true _mocha",
"check-coverage": "npm run coverage && istanbul check-coverage --statements 16",
"coveralls": "npm run coverage && npm run coveralls-after-test",
"coveralls-after-test": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"micro",
"service",
"build",
"automation",
"minification",
"s3",
"project"
],
"bin": {
"bosco": "./bin/bosco.js"
},
"directories": {
"man": "./man",
"bin": "./bin"
},
"repository": {
"type": "git",
"url": "https://github.com/tes/bosco.git"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"appdirectory": "^0.1.0",
"asciify": "^1.3.5",
"async": "^1.4.2",
"browser-sync": "^2.11.2",
"clean-css": "^3.1.9",
"cli-table": "^0.3.0",
"colors": "^1.0.3",
"dockerode": "^2.0.3",
"figlet": "^1.1.1",
"fs-extra": "^0.26.2",
"glob": "^7.0.3",
"handlebars": "^4.0.3",
"highland": "^2.2.0",
"inquirer": "^0.10.1",
"knox": "^0.9.0",
"lodash": "^3.5.0",
"mime": "^1.2.11",
"moment": "^2.12.0",
"nconf": "^0.8.1",
"nsp": "^2.0.2",
"octonode": "^0.7.4",
"osenv": "^0.1.0",
"parse-link-header": "^0.4.1",
"pm2": "^1.1.1",
"prettyjson": "^1.0.0",
"progress": "^1.1.8",
"prompt": "^1.0.0",
"request": "^2.40.0",
"semver": "^5.0.3",
"sf": "^0.1.7",
"symlink": "^2.0.0",
"tail": "^1.1.0",
"tar-fs": "^1.2.0",
"uglify-js": "^2.6.1",
"watch": "^0.17.1",
"yargs": "^3.26.0"
},
"devDependencies": {
"coveralls": "^2.11.1",
"eslint": "^1.10.2",
"eslint-config-airbnb": "^0.1.0",
"expect.js": "^0.3.1",
"gulp": "^3.8.7",
"gulp-marked-man": "^0.3.1",
"istanbul": "^0.3.2",
"mocha": "^2.2.1",
"pre-commit": "^1.1.1",
"sinon": "^1.17.1"
},
"config": {
"blanket": {
"pattern": "src"
}
}
}