forked from claudiajs/claudia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.05 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
{
"name": "claudia",
"version": "3.4.1",
"description": "Deploy Node.js projects to AWS Lambda and API Gateway easily.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/claudiajs/claudia.git"
},
"bin": {
"claudia": "./bin/cmd.js"
},
"main": "index.js",
"keywords": [
"claudia",
"aws",
"lambda",
"apigateway",
"s3",
"api",
"microservices",
"serverless"
],
"bugs": {
"url": "https://github.com/claudiajs/claudia/issues"
},
"homepage": "https://github.com/claudiajs/claudia",
"files": [
"src",
"logo.png",
"*.md",
"*.js",
"app-templates",
"json-templates",
"bin",
"docs"
],
"scripts": {
"prepublishOnly": "npm shrinkwrap && node src/util/doc-md.js",
"pretest": "eslint .",
"test": "node spec/support/jasmine-runner.js",
"debug": "node debug spec/support/jasmine-runner.js",
"integration-build": "aws codebuild start-build --project-name claudiajs --region us-west-2 --profile claudia-test",
"integration-results": "aws s3 cp s3://claudiatestresults/claudiajs/buildresult.txt . --profile claudia-test",
"integration-build-status": "aws codebuild batch-get-builds --ids $(aws codebuild list-builds-for-project --project-name claudiajs --profile claudia-test --region us-west-2 --query 'ids[0]' --output text) --region us-west-2 --profile claudia-test --query 'builds[].buildStatus' --output text"
},
"author": "Gojko Adzic <[email protected]> http://gojko.net",
"dependencies": {
"archiver": "^2.0.0",
"aws-sdk": "^2.173.0",
"gunzip-maybe": "^1.4.0",
"minimal-request-promise": "^1.1.0",
"minimist": "^1.2.0",
"oh-no-i-insist": "^1.1.1",
"proxy-agent": "^2.2.0",
"sequential-promise-map": "^1.0.0",
"shelljs": "^0.5.3",
"tar-fs": "^1.14.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"dotenv": "^2.0.0",
"eslint": "^3.12.2",
"eslint-config-crockford": "^0.2.0",
"eslint-config-defaults": "^9.0.0",
"jasmine": "^2.5.2",
"jasmine-spec-reporter": "^2.7.0"
}
}