forked from cloudmine/node-coderunner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"author": "CloudMine, Inc.",
"name": "cloudmine-servercode",
"description": "A Way to run Node.js apps on CloudMine's Internal Platform",
"version": "0.9.3",
"homepage": "https://cloudmine.me/",
"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": "2.10.0",
"hapi": "9.x.x"
},
"devDependencies": {
"blanket-node": "2.0.0",
"chai": "3.4.0",
"coffee-script": "1.10.0",
"coffeelint": "1.13.0",
"coffeelint-use-strict": "1.0.0",
"david": "6.4.0",
"mocha": "2.3.3",
"travis-cov": "0.2.5"
}
}