-
Notifications
You must be signed in to change notification settings - Fork 166
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "aws-lib",
"description": "Extensible Node.js library for the Amazon Web Services API",
"version": "0.3.0",
"homepage": "http://github.com/livelycode/aws-lib",
"keywords": [
"amazon",
"aws",
"ec2",
"product advertising",
"simpledb",
"Simple Queue Service",
"SQS",
"Simple Email Service",
"SES",
"Auto Scaling",
"AS"
],
"repository": "git://github.com/livelycode/aws-lib.git",
"author": "Mirko Kiefer <[email protected]> (http://mirkokiefer.com)",
"contributors": [
"Mirko Kiefer <[email protected]> (http://mirkokiefer.com)",
"Paul Bonser <[email protected]> (http://probablyprogramming.com)",
"Richard Rodger <[email protected]> (http://www.ricebridge.com/)",
"Ross Duggan <[email protected]> (http://rossduggan.ie/)",
"Mike MacCana <[email protected]> (http://mikemaccana.com/)"
],
"dependencies": {
"xml2js": "0.1.x",
"sax": "0.1.x",
"underscore": "~1.5.2"
},
"devDependencies": {
"mocha": "*",
"nock": "0.14.x"
},
"scripts": {
"test": "./node_modules/.bin/mocha -t 60000",
"test-on-aws": "ON_AWS=1 ./node_modules/.bin/mocha -t 60000"
},
"main": "lib/aws",
"directories": {
"lib": "lib",
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=0.4"
}
}