-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "lambda-es6-example",
"version": "1.0.0",
"description": "A simple example showing how to deploy AWS Lambdas written with JS ES6",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"prepublish": "webpack",
"test": "mocha --compilers js:babel-core/register --recursive tests/"
},
"bin": "./bin/run.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rricard/lambda-es6-example.git"
},
"keywords": [
"aws",
"lambda",
"example",
"es6"
],
"author": "Robin Ricard",
"license": "MIT",
"bugs": {
"url": "https://github.com/rricard/lambda-es6-example/issues"
},
"homepage": "https://github.com/rricard/lambda-es6-example#readme",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-syntax-flow": "^6.1.18",
"babel-plugin-transform-flow-strip-types": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"json-loader": "^0.5.3",
"mocha": "^2.3.4",
"webpack": "^1.12.8"
},
"dependencies": {
"node-fetch": "^1.3.3"
}
}