forked from dmcquay/node-apac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 943 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
36
37
38
39
40
41
42
43
44
{
"name": "apac",
"description": "Amazon Product Advertising API Client for Node",
"version": "1.1.1",
"author": "Dustin McQuay <[email protected]>",
"scripts": {
"test": "mocha lib/*.specs.js",
"test:acceptance": "mocha test/acceptance/*.specs.js || true"
},
"repository": {
"type": "git",
"url": "git://github.com/dmcquay/node-apac.git"
},
"bugs": {
"url": "http://github.com/dmcquay/node-apac/issues"
},
"directories": {
"lib": "./lib/"
},
"main": "./lib/apac",
"dependencies": {
"xml2js": "0.4.16"
},
"devDependencies": {
"chai": "3.5.0",
"dotenv": "^2.0.0",
"mocha": "2.4.5",
"proxyquire": "1.7.4",
"sinon": "1.17.3"
},
"engines": {
"node": ">=4.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/dmcquay/node-apac/raw/master/LICENSE"
}
],
"keywords": [
"Amazon Product Advertising API",
"AWS"
]
}