This repository has been archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "sn-deploy-notifier",
"version": "1.0.0",
"description": "A probot app to show deployed sites from netlify.",
"author": "Sense/Net <[email protected]> (http://sensenet.com/)",
"license": "GPL-2.0",
"repository": "https://github.com/SenseNet/sn-deploy-notifier.git",
"homepage": "https://github.com/SenseNet/sn-deploy-notifier",
"bugs": "https://github.com/SenseNet/sn-deploy-notifier/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "npm run build && probot run ./lib/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(ts)\"",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@octokit/auth-app": "^2.10.5",
"@octokit/request": "^5.4.12",
"body-parser": "^1.19.0",
"probot": "^9.15.1",
"semaphore-async-await": "^1.5.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"acorn": "^8.0.4",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"nock": "^13.0.5",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"smee-client": "^1.2.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12"
},
"jest": {
"testEnvironment": "node"
}
}