-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.6 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.6 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
66
67
68
69
70
71
72
73
{
"name": "lambda-boilerplate-node",
"version": "0.0.1",
"description": "Get started quick building and deploying a full Node.js application quick and painlessly on AWS Lambda",
"author": "Jordan Ramos",
"license": "ISC",
"keywords": [
"lambda",
"aws",
"node",
"boilerplate",
"api",
"gateway"
],
"homepage": "https://github.com/TimeInc/lambda-boilerplate-node#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TimeInc/lambda-boilerplate-node.git"
},
"bugs": {
"url": "https://github.com/TimeInc/lambda-boilerplate-node/issues"
},
"main": "dist/index.js",
"scripts": {
"start": "ENV=local nodemon index.js --exec babel-node | bunyan",
"watch": "npm run watch:test",
"watch:test": "npm run test:unit -- -w",
"test": "npm run test:unit && npm run test:cover && npm run test:lint",
"test:unit": "ENV=test mocha --compilers js:babel-core/register -R dot -u bdd --recursive ./src/**/*-spec.js",
"test:cover": "ENV=test nyc --reporter=lcov --reporter=text-lcov npm test",
"test:lint": "npm run lint",
"lint": "npm run lint:src && npm run lint:test",
"lint:src": "ENV=test eslint src",
"lint:test": "ENV=test eslint test",
"build": "npm run build:clean && npm run build:compile && npm run build:install",
"build:clean": "rm -rf dist && mkdir dist",
"build:compile": "babel src -d dist -D",
"build:install": "cp package.json dist && find dist/ -name package.json -execdir npm install --production \\;",
"bundle": "npm run build && npm run bundle:zip",
"bundle:zip": "rm -rf bundle.zip && cd dist && zip -rq bundle.zip . && mv bundle.zip .. && cd .."
},
"dependencies": {
"babel-runtime": "^6.11.6",
"body-parser": "^1.15.2",
"lodash.kebabcase": "^4.1.1",
"webpack": "^1.14.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.14.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-preset-babili": "0.0.9",
"chai": "^3.5.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.7.1",
"express": "^4.14.0",
"mocha": "^3.0.2",
"nodemon": "^1.11.0",
"nyc": "^8.3.1",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
}
}