-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.84 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.84 KB
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
{
"name": "radws",
"version": "1.0.0-alpha.7",
"description": "Rapid application development without servers",
"main": "index.js",
"bin": {
"radws-dev-server": "./bin/radws-dev-server"
},
"scripts": {
"dev:server": "radws-dev-server",
"test": "npm run test:lint && npm run test:unit && npm run test:int",
"test:lint": "eslint .",
"test:unit": "mocha test/unit",
"test:int": "mocha test/int",
"test:watch": "mocha --watch test/unit",
"deploy:test": "npm run deploy:clean:test && npm run deploy:package:test && npm run deploy:create:test && npm run --silent deploy:describe:test | tee ./package/stacks.test.json",
"deploy:clean:test": "rm -rf ./package",
"deploy:package:test": "mkdir -p package && aws cloudformation package --template-file ./template.yaml --s3-bucket radws-packages --output-template-file ./package/template.yaml",
"deploy:create:test": "aws cloudformation deploy --template-file ./template.yaml --stack-name radws-test --capabilities CAPABILITY_IAM",
"deploy:describe:test": "aws cloudformation describe-stacks --stack-name radws-test",
"deploy:log:test": "aws cloudformation describe-stack-events --stack-name radws-test | less",
"deploy:destroy:test": "aws cloudformation delete-stack --stack-name radws-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuperman/radws.git"
},
"author": "Jeff Cooper",
"license": "MIT",
"bugs": {
"url": "https://github.com/cuperman/radws/issues"
},
"homepage": "https://github.com/cuperman/radws#readme",
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^4.0.0",
"eslint": "^4.11.0",
"mocha": "^4.0.1"
},
"dependencies": {
"aws-sdk": "^2.153.0",
"express": "^4.16.2",
"inquirer": "^4.0.1",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4",
"mustache-express": "^1.2.5"
}
}