-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"author": "CloudMine, Inc.",
"name": "cloudmine-servercode",
"description": "A Way to run Node.js apps on CloudMine's Logic Engine",
"version": "1.2.1",
"homepage": "https://cloudmine.io/",
"license": "MIT",
"main": "bin/server.js",
"repository": {
"type": "git",
"url": "https://github.com/cloudmine/node-coderunner"
},
"scripts": {
"prepublish": "coffee -o bin -c lib/*.coffee",
"test": "make test"
},
"config": {
"blanket": {
"pattern": "lib",
"shortnames": true,
"data-cover-reporter-options": {
"shortnames": true
},
"data-cover-never": "node_modules",
"loader": "./node-loaders/coffee-script"
},
"travis-cov": {
"threshold": 90
}
},
"dependencies": {
"boom": "7.1.1",
"hapi": "16.x.x",
"lodash": "4.17.x"
},
"devDependencies": {
"blanket": "1.2.x",
"chai": "4.1.x",
"coffee-script": "1.x.x",
"coffeelint": "2.1.x",
"coffeelint-use-strict": "1.0.0",
"david": "11.0.x",
"mocha": "5.0.x",
"travis-cov": "0.2.5"
}
}