-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "dev-avatar",
"version": "1.0.1",
"description": "Replay your source code development on code review",
"author": "Yuki Ueda <ueda.yuki.un7@is.naist.jp> (http://ikuyadeu.github.io/)",
"license": "ISC",
"repository": "https://github.com/devreplay/github-app-devreplay.git",
"homepage": "https://github.com/devreplay/github-app-devreplay",
"bugs": "https://github.com/devreplay/github-app-devreplay/issues",
"keywords": [
"probot",
"github",
"probot-app",
"devreplay"
],
"scripts": {
"build": "tsc",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"devreplay": "1.10.5",
"diff": "5.0.0",
"probot": "^12.1.1",
"request": "^2.88.2",
"typescript": "^4.4.2"
},
"devDependencies": {
"@types/diff": "5.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.10",
"@types/request": "^2.48.7",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^27.1.0",
"jest-cli": "^27.1.0",
"nodemon": "^2.0.12",
"smee-client": "^1.2.2",
"standard": "^16.0.3",
"ts-jest": "^27.0.5"
},
"engines": {
"node": "14.15.4"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
}
}