forked from eisenzopf/google-action-three-doors
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 722 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 722 Bytes
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
{
"name": "three-doors",
"description": "An adventure game that generates random rooms",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Jonathan Eisenzopf <ironbraid74@gmail.com>",
"engines": {
"node": "~4.2"
},
"scripts": {
"lint": "semistandard --fix \"**/*.js\"",
"start": "functions deploy three-doors --trigger-http",
"deploy": "gcloud beta functions deploy three-doors --trigger-http --stage-bucket gs://three-doors-xxxx",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"lodash": "4.x",
"snyk": "^1.234.0"
},
"devDependencies": {
"semistandard": "^9.1.0"
},
"snyk": true
}