This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "heap-api",
"version": "1.0.1",
"description": "Heap Server-Side API Client",
"keywords": ["heap", "api", "client", "analytics"],
"homepage": "https://github.com/heap/heap-node",
"author": "Victor Costan <victor@costan.us> (http://www.costan.us)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/heap/heap-node.git"
},
"bugs": {
"url": "https://github.com/heap/heap-node/issues"
},
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"any-promise": ">= 0",
"request": ">= 0"
},
"devDependencies": {
"chai": ">= 3.5.0",
"chai-as-promised": ">= 5.2.0",
"coveralls": ">= 2.11.8",
"es6-promise": ">= 3.1.2",
"ink-docstrap": ">= 1.1.4",
"istanbul": ">= 0.4.2",
"jsdoc": ">= 3.4.0",
"mocha": ">= 2.4.5",
"mocha-lcov-reporter": ">= 1.2.0",
"nock": ">= 7.4.0",
"sinon": ">= 1.17.3",
"sinon-chai": ">= 2.8.0",
"watch": ">= 0.16.0"
},
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"cov": "node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha",
"coveralls": "node node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"doc": "node node_modules/.bin/jsdoc -c jsdoc.json",
"test": "node node_modules/mocha/bin/mocha"
},
"config": {
"blanket": {
"pattern": [""],
"data-cover-never": ["node_modules", "test"]
}
}
}