-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "serverless-aws-nested-stacks",
"main": "index",
"version": "0.1.2",
"description": "Serverless plugin to easily set up AWS cloudformation nested stacks!",
"keywords": [
"serverless",
"node",
"aws"
],
"repository": {
"type": "git",
"url": "https://github.com/concon121/serverless-plugin-nested-stacks"
},
"engines": {
"node": ">=4.0"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.0.6"
},
"devDependencies": {
"ava": "^0.25.0",
"codecov": "^3.1.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"istanbul": "^1.0.0-alpha.2",
"jasmine": "^2.5.2",
"jshint": "^2.9.4",
"nyc": "^13.1.0",
"serverless": "^1.32.0"
},
"scripts": {
"test": "ava --verbose",
"cover": "nyc npm test",
"publish-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"jshint": "node ./node_modules/jshint/bin/jshint index.js",
"eslint": "node ./node_modules/eslint/bin/eslint index.js",
"quality": "npm run jshint && npm run eslint"
}
}