-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
35 lines (35 loc) · 934 Bytes
/
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
{
"name": "akamai-http-api",
"version": "0.6.1",
"main": "./lib/akamai.js",
"author": "Kanstantsin Kamkou <[email protected]>",
"description": "Akamai NetStorage HTTP API for Node.js",
"keywords": [
"akamai",
"api",
"http",
"netstorage"
],
"repository": {
"type": "git",
"url": "https://github.com/kkamkou/node-akamai-http-api.git"
},
"bugs": {
"url": "https://github.com/kkamkou/node-akamai-http-api/issues"
},
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"lodash": "^4.17.11",
"request": "^2.88.0",
"xml2js": ">=0.4.16"
},
"devDependencies": {
"coveralls": "^3.0.3",
"istanbul": "~0.4.3",
"mocha": "^6.1.4",
"should": "~11.1"
}
}