-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 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
{
"name": "babel-lambda-skeleton",
"version": "0.0.0",
"description": "Basic setup for an AWS Lambda function using Babel",
"main": "src/index.js",
"author": "Kristoffer K Larsen <kristoffer@larsen.so>",
"repository": {
"type": "git",
"url": "https://github.com/larseen/babel-lambda-skeleton"
},
"bugs": {
"url": "https://github.com/larseen/babel-lambda-skeleton/issues"
},
"ava": {
"require": "babel-core/register",
"files": [
"test/**/*.test.js"
]
},
"keywords": [
"AWS",
"Lambda",
"babel",
"es6",
"amazon",
"skeleton",
"starter"
],
"license": "MIT",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"aws": "babel-node scripts/deploy",
"deploy": "npm run dist && npm run aws",
"dist": "npm run clean && npm run build && npm run dependencies && npm run compress",
"build": "babel src --out-dir dist",
"clean": "rm -fr dist && rm -fr dist.zip",
"dependencies": "cp ./package.json ./dist/package.json && npm --only=production --prefix ./dist install ./dist",
"compress": "zip -r dist.zip dist",
"test": "npm run lint && nyc --reporter=text ava",
"test:watch": "ava --watch"
},
"devDependencies": {
"ava": "^0.15.1",
"aws-lambda-mock-context": "^3.0.0",
"babel-core": "^6.3.21",
"babel-eslint": "^6.0.4",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"child-process-promise": "^2.0.2",
"colors-cli": "^1.0.7",
"coveralls": "^2.11.9",
"eslint": "^2.12.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^1.8.1",
"json-loader": "^0.5.4",
"loading-cli": "^1.0.2",
"nyc": "^6.4.4"
},
"dependencies": {
"apex.js": "^1.1.0",
"babel-polyfill": "^6.9.1"
}
}