forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.49 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "gq-aws-sdk",
"description": "AWS SDK for JavaScript",
"version": "1.0.9",
"author": {
"name": "Amazon Web Services",
"email": "",
"url": "http://aws.amazon.com/"
},
"homepage": "https://github.com/grimurjonsson/aws-sdk-js",
"contributors": [
"Grimur Jonsson <[email protected]>",
"runarberg <[email protected]>",
"Skossi <[email protected]>"
],
"devDependencies": {
"repl.history": "*",
"semver": "*",
"coffee-script": "1.6.3",
"eslint": "*",
"cucumber": "*",
"coffeeify": "*",
"browserify": "3.x",
"uglify-js": "2.x",
"mocha": "*",
"chai": "*",
"istanbul": "*",
"coveralls": "2.x"
},
"dependencies": {
"sax": "0.5.3",
"xml2js": "0.2.8",
"xmlbuilder": "0.4.2"
},
"main": "lib/aws.js",
"browser": "lib/browser.js",
"browserify": {
"transform": "./dist-tools/transform.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": ""
},
"license": "Apache-2.0",
"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",
"waf"
],
"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 `[ $COVERAGE ] && echo 'cover _mocha' || echo 'test mocha'` -- test test/json test/model test/protocol test/query test/services test/signers test/xml test/s3 test/cloudfront",
"coverage": "istanbul cover ./node_modules/mocha/bin/_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 lib dist-tools/*.js",
"console": "./scripts/console"
}
}