-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
{
"name": "wandbox-api",
"version": "0.0.0",
"description": "Node.js bindings to the Wandbox API.",
"author": {
"name": "Philipp Burckhardt",
"email": "[email protected]"
},
"contributors": [
{
"name": "Philipp Burckhardt",
"email": "[email protected]"
}
],
"bin": {
"runWandbox": "./bin/cli"
},
"scripts": {
"test": "tape \"./test/*.js\"",
"test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
"coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape -- \"./test/*.js\" && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/planeshifter/node-wandbox-api.git"
},
"keywords": [
"wandbox",
"api",
"compiler",
"compilation",
"social compiler"
],
"bugs": {
"url": "https://github.com/planeshifter/node-wandbox-api/issues"
},
"dependencies": {
"debug": "^2.2.0",
"minimist": "^1.2.0",
"request": "^2.69.0",
"type-name": "^2.0.0",
"update-notifier": "^0.6.0",
"utils-copy": "^1.1.0",
"utils-cwd": "^2.0.0",
"utils-fs-read-file": "^1.0.0",
"utils-merge2": "2.x.x",
"validate.io-boolean-primitive": "^1.0.0",
"validate.io-function": "^1.0.2",
"validate.io-object": "^1.0.4",
"validate.io-object-array": "^1.0.0",
"validate.io-string-primitive": "^1.0.0"
},
"devDependencies": {
"@kgryte/noop": "^1.0.0",
"chai": "3.x.x",
"codecov": "1.x.x",
"istanbul": "^0.4.1",
"jshint": "2.x.x",
"jshint-stylish": "2.x.x",
"mkdirp": "^0.5.1",
"proxyquire": "^1.7.4",
"tap-spec": "4.x.x",
"tape": "4.x.x",
"utils-fs-exists": "^1.0.1"
},
"license": "MIT"
}