-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
70
71
72
73
74
75
76
77
{
"name": "repack-lambda",
"version": "0.1.1",
"description": "Repack Lambda - An opinionated AWS Lambda development and management tool",
"homepage": "https://github.com/repack/repack-lambda",
"scripts": {
"build": "./bin/build.sh",
"clean": "rm -rf dist && rm -rf tmp",
"deploy": "./bin/deploy.sh",
"dev": "webpack -w",
"lint": "eslint src",
"gulp": "gulp deploy",
"test": "mocha ./tests/* --compilers js:babel-register",
"prerelease": "git pull origin master",
"release": "npm test && gulp github-release",
"postrelease": "git push origin master && git push --tags",
"webpack": "NODE_ENV=production webpack -p",
"create": "./bin/create.sh"
},
"keywords": [
"repack",
"aws",
"lambda",
"deploy",
"repack-base",
"cli",
"interactive"
],
"private": false,
"bugs": {
"url": "https://github.com/dbuarque/repack-lambda/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:dbuarque/repack-lambda.git"
},
"author": "Diogenes Buarque Ianakiara",
"contributors": [
"David Ianakiara <david@getty.io>"
],
"license": "Apache License 2.0",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"debug": "^2.2.0",
"del": "^2.2.0",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"gulp": "^3.9.1",
"gulp-exec": "^2.1.2",
"gulp-install": "^0.6.0",
"gulp-release-it": "^1.0.10",
"gulp-webpack": "^1.5.0",
"gulp-zip": "^3.2.0",
"json-loader": "^0.5.4",
"mocha": "^2.3.4",
"node-aws-lambda": "^0.1.7",
"nodemon": "^1.8.1",
"rimraf": "^2.5.2",
"run-sequence": "^1.1.5",
"should": "^8.2.0",
"supertest": "^1.2.0",
"webpack": "^1.12.13",
"webpack-stream": "^3.1.0"
},
"dependencies": {
"async": "^1.5.2",
"aws-sdk": "^2.2.37",
"jsonschema": "^1.1.0",
"lodash": "^4.5.1",
"moment": "^2.11.2",
"path": "^0.12.7"
}
}