-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "3scale",
"description": "Client for 3Scale Networks API",
"version": "0.7.6",
"homepage": "http://www.3scale.net",
"repository": {
"type": "git",
"url": "git://github.com/3scale/3scale_ws_api_for_nodejs.git"
},
"author": "3scale <[email protected]>",
"contributors": [
"Carlos Villuendas <[email protected]>",
"Michal Cichra <[email protected]>",
"Daniel Stevens <[email protected]>",
"Chaitanya Surapaneni <[email protected]>",
"Joaquin Rivera (joahking) <[email protected]>",
"Victor Delgado <[email protected]>"
],
"main": "lib/index.js",
"bugs": {
"url": "http://github.com/3scale/3scale_ws_api_for_nodejs/issues"
},
"keywords": [
"api",
"authorization",
"3scale",
"web"
],
"scripts": {
"prepublish": "coffee --bare -o lib -c src",
"test": "mocha --compilers coffee:coffee-script/register test/* -if 'Integration'",
"test-all": "mocha --compilers coffee:coffee-script/register test/*"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"es6-promise": "^3.1.2",
"qs": "^5.2.0",
"xml2js": "^0.4.16"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"mocha": "^2.3.4",
"nock": "^3.3.2"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=2.0.0"
},
"optionalDependencies": {}
}