-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "wip",
"version": "0.0.0-development",
"private": true,
"description": "DO NOT MERGE – as a service.",
"main": "index.js",
"files": [
"index.js",
"pro-plan-for-free.js",
"lib"
],
"scripts": {
"start": "probot run ./index.js",
"now-start": "PRIVATE_KEY=$(echo $PRIVATE_KEY | base64 -d) npm start",
"test": "tap --100 --coverage test/**/*-test.js",
"posttest": "npm run lint",
"semantic-release": "semantic-release",
"lint": "prettier --check '{lib,test}/**/*.{js,json,ts}' index.js *.md package.json",
"lint:fix": "prettier --write '{lib,test}/**/*.{js,json,ts}' index.js *.md package.json"
},
"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": {
"gemoji": "^5.0.1",
"logdna-bunyan": "^1.1.0",
"pluralize": "^8.0.0",
"probot": "^9.9.1",
"probot-config": "^1.0.1"
},
"jest": {
"testURL": "http://localhost/"
},
"devDependencies": {
"lodash.clonedeep": "^4.5.0",
"lolex": "^6.0.0",
"prettier": "^2.0.5",
"proxyquire": "^2.0.1",
"semantic-release": "^17.0.0",
"simple-mock": "^0.8.0",
"smee-client": "^1.1.0",
"tap": "^14.0.0"
},
"engines": {
"node": ">=10.7.0",
"npm": ">=5.3.0"
}
}