forked from wip/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (72 loc) · 1.52 KB
/
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
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": "wip",
"version": "0.0.0-development",
"description": "",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"deploy": "scripts/deploy.sh",
"start": "probot run ./index.js",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start",
"test": "jest",
"test:watch": "jest . --watch",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"lint": "standard"
},
"standard": {
"globals": [
"jest",
"it",
"expect",
"describe"
]
},
"repository": {
"type": "git",
"url": "https://github.com/wip/app.git"
},
"keywords": [
"probot",
"probot-plugin"
],
"author": "Gregor Martynus (https://github.com/gr2m)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wip/app/issues"
},
"homepage": "https://github.com/wip/app#readme",
"dependencies": {
"probot": "^6.0.0"
},
"jest": {
"testRegex": "/test/unit/.+\\.test\\.js$"
},
"devDependencies": {
"jest": "^22.3.0",
"semantic-release": "^15.0.0",
"standard": "^11.0.0"
},
"engines": {
"node": ">=8.3.0",
"npm": ">=5.3.0"
},
"release": {
"prepare": [],
"verifyConditions": ["@semantic-release/github"],
"publish": ["@semantic-release/github"]
},
"now": {
"alias": "wip",
"env": {
"APP_ID": "@app-id",
"LOG_LEVEL": "@log-level",
"NODE_ENV": "production",
"PRIVATE_KEY": "@private-key",
"WEBHOOK_SECRET": "@webhook-secret"
}
}
}