forked from aws/aws-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.93 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
{
"name": "aws-sdk",
"description": "AWS SDK for JavaScript",
"version": "0.9.1-pre.2",
"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": {
"jasmine-node": "latest",
"coffee-script": "latest",
"visionmedia-jscoverage": "latest",
"node-ffi": "latest",
"jshint": "0.9.0",
"cucumber": "latest"
},
"dependencies": {
"xml2js": "latest",
"xmlbuilder": "latest"
},
"optionalDependencies": {
"libxmljs": "latest"
},
"main": "lib/aws.js",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">= 0.6.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"
}],
"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"
],
"scripts" : {
"test" : "npm -s run-script lint && (([ -f configuration ] && jasmine-node --coffee test && cucumber.js) || ([ ! -f configuration ] && npm -s run-script unit))",
"unit" : "jasmine-node --noColor --coffee test/unit",
"integration": "jasmine-node --noColor --coffee test/integration",
"features": "cucumber.js",
"lint" : "jshint lib"
}
}