forked from googlearchive/interactive-fiction-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 816 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
33
34
35
36
37
38
39
{
"name": "if-action",
"description": "Actions SDK sample for Google App Engine",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Google Inc.",
"engines": {
"node": ">=6.11.1"
},
"scripts": {
"lint": "semistandard --fix \"**/app.js\"",
"start": "node app.js",
"monitor": "nodemon app.js",
"deploy": "gcloud app deploy",
"test": "npm run lint"
},
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"actions-on-google": "^1.5.0",
"body-parser": "^1.15.2",
"express": "^4.13.4",
"iconv-lite": "^0.4.15",
"inquirer": "^3.0.1",
"request": "^2.79.0"
},
"devDependencies": {
"semistandard": "^9.1.0"
}
}