-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "menu-lambda",
"version": "1.24.2",
"description": "Lambda to post the News UK building canteen menu, daily, to Slack",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"test-inspect": "node --inspect-brk node_modules/.bin/jest",
"lint": "eslint . --report-unused-disable-directives",
"start": "node --inspect dry-run",
"invoke": "./scripts/invoke-local.sh",
"add-fixture": "node ./scripts/add-fixture.js",
"deploy": "serverless deploy -v",
"destroy": "sleep 3; serverless remove -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lhaggar/menu-lambda.git"
},
"keywords": [],
"author": "Lewis Haggar <lhaggar@outlook.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/lhaggar/menu-lambda/issues"
},
"homepage": "https://github.com/lhaggar/menu-lambda#readme",
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.5.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.1",
"jest": "23.6.0",
"prettier": "1.15.3",
"serverless": "^2.72.4"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"got": "9.6.0"
}
}