-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "similar-code-searcher",
"version": "1.0.0",
"description": "",
"author": "YukiUeda <ikuyadeu0513@gmail.com>",
"license": "ISC",
"repository": "https://github.com/Ikuyadeu/similar-code-searcher.git",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^10.8.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^26.4.0",
"nodemon": "^2.0.4",
"smee-client": "^1.2.2",
"standard": "^14.3.4",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">= 10.15.0"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
}
}