-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 910 Bytes
/
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
{
"name": "alexa-lunchlady",
"version": "1.0.0",
"description": "Alexa skill to check what's on the CBSD lunch menu",
"main": "index.js",
"dependencies": {
"alexa-app": "^2.3.4",
"cheerio": "^0.22.0",
"lodash.compact": "^3.0.1",
"moment": "^2.17.1",
"request": "^2.79.0"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0"
},
"scripts": {
"lint": "$(npm bin)/eslint index.js",
"package": "PKGVERSION=$(node -p -e \"require('./package.json').version\") && rm lunchlady_$PKGVERSION.zip && zip -r -X lunchlady_$PKGVERSION.zip -x*.zip *",
"build": "npm run lint && npm run package",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"alexa",
"cbsd",
"lunch",
"menu"
],
"author": "Adam Gruber <[email protected]>",
"license": "ISC"
}