forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "aws-sdk",
"description": "AWS SDK for JavaScript",
"version": "2.0.15",
"author": {
"name":"Amazon Web Services",
"email":"",
"url":"http://aws.amazon.com/"
},
"homepage": "https://github.com/aws/aws-sdk-js",
"contributors": [
"Loren Segal <[email protected]>",
"Trevor Rowe <[email protected]>"
],
"devDependencies": {
"repl.history": "*",
"semver": "*",
"coffee-script": "1.6.3",
"eslint": "*",
"cucumber": "*",
"coffeeify": "*",
"browserify": "3.x",
"uglify-js": "2.x",
"mocha": "*",
"chai": "*",
"istanbul": "*"
},
"dependencies": {
"aws-sdk-apis": ">=3.1.0 <4.0.0",
"xml2js": "0.2.6",
"xmlbuilder": "0.4.2"
},
"main": "lib/aws.js",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type" : "git",
"url": "git://github.com/aws/aws-sdk-js"
},
"bugs" : {
"url" : "http://github.com/aws/aws-sdk-js/issues",
"mail" : ""
},
"licenses": [{
"type": "Apache 2.0",
"url": "http://github.com/aws/aws-sdk-js/raw/master/LICENSE.txt"
}],
"keywords": [
"api", "amazon","aws","ec2","simpledb","s3","sqs","ses","sns","route53","rds","elasticache","cloudfront","fps",
"cloudformation","cloudwatch","dynamodb","iam","swf","autoscaling","cloudsearch","elb",
"loadbalancing","emr","mapreduce","importexport","storagegateway","workflow","ebs","vpc","beanstalk",
"glacier","kinesis","cloudtrail"
],
"scripts" : {
"test" : "npm -s run-script lint && npm -s run-script unit && npm -s run-script buildertest && npm -s run-script browsertest && ([ -f configuration ] && npm -s run-script integration || true)",
"unit" : "istanbul test mocha -- test test/json test/model test/protocol test/query test/services test/signers test/xml",
"browsertest": "rake browser:test",
"buildertest": "mocha --compilers coffee:coffee-script -s 1000 -t 10000 dist-tools/test",
"integration": "cucumber.js",
"lint" : "eslint --rulesdir eslint-rules lib",
"console": "./scripts/console"
}
}