forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.23 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "aws-sdk",
"description": "AWS SDK for JavaScript",
"version": "2.41.0",
"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": {
"@types/node": "^6.0.46",
"browserify": "13.1.0",
"chai": "*",
"codecov": "^1.0.1",
"coffee-script": "1.6.3",
"coffeeify": "*",
"cucumber": "0.5.x",
"eslint": "1.x",
"insert-module-globals": "^7.0.0",
"istanbul": "*",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma": "^1.4.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "*",
"repl.history": "*",
"semver": "*",
"typescript": "2.0.8",
"uglify-js": "2.x"
},
"dependencies": {
"buffer": "4.9.1",
"crypto-browserify": "1.0.9",
"jmespath": "0.15.0",
"querystring": "0.2.0",
"sax": "1.2.1",
"url": "0.10.3",
"uuid": "3.0.1",
"xml2js": "0.4.17",
"xmlbuilder": "4.2.1"
},
"main": "lib/aws.js",
"browser": {
"lib/aws.js": "./lib/browser.js",
"fs": false,
"./global.js": "./browser.js",
"./lib/node_loader.js": "./lib/browser_loader.js"
},
"browserify": {
"transform": "./dist-tools/transform.js"
},
"directories": {
"lib": "lib"
},
"types": "index.d.ts",
"typings": "index.d.ts",
"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": "mocha -- test test/json test/model test/protocol test/query test/services test/signers test/xml test/s3 test/cloudfront test/dynamodb test/polly",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --reporter=lcovonly -- test test/json test/model test/protocol test/query test/services test/signers test/xml test/s3 test/cloudfront test/dynamodb test/polly",
"browsertest": "rake browser:test && karma start",
"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",
"testfiles": "istanbul `[ $COVERAGE ] && echo 'cover _mocha' || echo 'test mocha'`",
"tstest": "tsc -p ./ts",
"add-change": "node ./scripts/changelog/add-change.js"
}
}