forked from electron/trop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "trop",
"version": "1.0.0",
"description": "",
"author": "Shelley Vohr <[email protected]>",
"license": "MIT",
"repository": "https://github.com/electron/trop.git",
"private": true,
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"prettier:write": "prettier --write \"{src,spec}/**/*.ts\"",
"lint": "prettier --check \"{src,spec}/**/*.ts\"",
"test": "jest --testPathIgnorePatterns=/working/ --testPathIgnorePatterns=/node_modules/",
"postinstall": "tsc",
"prepare": "husky install"
},
"dependencies": {
"fs-extra": "^11.1.1",
"global-agent": "^3.0.0",
"node-fetch": "^2.6.7",
"probot": "^12.3.3",
"prom-client": "^14.2.0",
"queue": "^6.0.0",
"simple-git": "3.19.1",
"what-the-diff": "^0.6.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.0.0",
"@types/node": "^18.11.8",
"@types/node-fetch": "^2.5.4",
"@types/pino-std-serializers": "^4.0.0",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^36.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^6.0.0",
"jest": "^29.0.0",
"lint-staged": "^10.4.2",
"nock": "^13.2.9",
"prettier": "^3.0.0",
"sinon": "^15.2.0",
"smee-client": "^1.2.3",
"ts-jest": "^29.0.0",
"typescript": "*"
},
"lint-staged": {
"{src,spec}/**/*.ts": "prettier --write **/*.ts"
},
"engines": {
"node": ">= 7.7.0",
"npm": ">= 4.0.0"
},
"resolutions": {
"config-yml/shelljs": "0.8.5",
"config-yml/yargs": "17.6.2"
}
}