-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "akamai",
"version": "0.10.1",
"description": "Communication with Akamai's REST API",
"keywords": [
"api",
"akamai",
"cdn",
"rest"
],
"author": "Julian Lannigan <[email protected]> (http://julianlannigan.com)",
"repository": {
"type": "git",
"url": "git://github.com/mrlannigan/node-akamai.git"
},
"bugs": {
"url": "http://github.com/mrlannigan/node-akamai/issues"
},
"license": "MIT",
"main": "akamai.js",
"scripts": {
"doc": "node_modules/.bin/docco akamai.js lib/* examples/*",
"test": "node_modules/.bin/mocha --slow 5 --timeout 100 --colors --reporter spec --check-leaks test/runner.js",
"coverage": "node_modules/.bin/mocha --slow 5 --timeout 100 --colors --reporter html-cov --check-leaks test/runner.js > coverage.html"
},
"directories": {
"examples": "examples"
},
"dependencies": {
"request": "2.36.x",
"lodash": "2.4.x",
"when": "3.2.x"
},
"devDependencies": {
"blanket": "1.1.x",
"docco": "0.6.x",
"mocha": "1.20.x",
"rewire": "^2.x.x",
"should": "^4.x.x",
"sinon": "^1.x.x"
},
"engines": {
"node": ">= 0.10.0"
}
}