-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "unreleased",
"version": "1.0.0",
"private": true,
"description": "Checks for and reports commits unreleased for all currently supported branches.",
"scripts": {
"eslint:format": "eslint --fix '**/*.js'",
"eslint:lint": "eslint '**/*.js'",
"lint": "npm run prettier:lint && npm run eslint:lint",
"lint-staged": "lint-staged",
"prepare": "husky",
"prettier:format": "prettier --write '**/*.js'",
"prettier:lint": "prettier --check '**/*.js'",
"start": "node server.js",
"test": "node --test **/*.spec.js",
"test:ghapi": "node --test test/gh-api-calls.js"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron/unreleased.git"
},
"author": "Electron Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron/unreleased/issues"
},
"homepage": "https://github.com/electron/unreleased#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@electron/github-app-auth": "^2.0.0",
"@octokit/rest": "^19.0.11",
"@slack/web-api": "^6.10.0",
"body-parser": "^1.18.3",
"express": "^5.0.1"
},
"devDependencies": {
"@octokit/graphql": "^5.0.6",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"prettier --write"
]
}
}