-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.48 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "generator-lambda-cd",
"version": "0.0.0",
"description": "Continous Deployment for AWS Lambda with Travis CI",
"bugs": {
"url": "https://github.com/hackerati/generator-lambda-cd/issues"
},
"homepage": "https://github.com/hackerati/generator-lambda-cd#readme",
"author": "Hackerati",
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"aws",
"lambda",
"continuous deployment",
"travis",
"yeoman-generator"
],
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"jest": "^21.0.1",
"jest-cli": "^21.0.1",
"sinon": "^3.2.1",
"yeoman-assert": "^3.0.0",
"yeoman-test": "^1.6.0",
"yo": "^2.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"nsp": "^2.6.3",
"request-promise": "^4.2.1",
"ursa": "^0.9.4",
"yeoman-generator": "^2.0.0",
"yosay": "^2.0.0"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
},
"engines": {
"node": ">=6.0.0"
},
"engineStrict": true,
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest __tests__/"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"jest": true,
"node": true
}
},
"repository": "git@github.com:hackerati/generator-lambda-cd.git",
"license": "MIT"
}