-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.7 KB
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": "create-nightly-release",
"version": "1.1.0",
"description": "GitHub action to create a new pre-release and delete old pre-releases created by this action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "npm run package-main && npm run package-post",
"package-main": "ncc build src/main.ts --source-map --license licenses.txt --out dist/main",
"package-post": "ncc build src/post.ts --source-map --license licenses.txt --out dist/post",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viperproject/create-nightly-release.git"
},
"keywords": [
"nightly",
"release",
"actions",
"node"
],
"author": {
"name": "Chair of Programming Methodology, ETH Zurich"
},
"license": "MPL-2.0",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1"
},
"devDependencies": {
"@octokit/core": "^7.0.6",
"@stylistic/eslint-plugin": "^5.10.0",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.2",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.48.0",
"@vercel/ncc": "^0.44.1",
"eslint": "^10.8.0",
"eslint-plugin-github": "^6.1.1",
"eslint-plugin-jest": "^29.16.0",
"jest": "^30.4.2",
"jest-circus": "^30.0.5",
"jest-util": "^30.0.5",
"js-yaml": "^5.2.2",
"prettier": "^3.9.6",
"ts-jest": "^29.4.12",
"typescript": "^5.9.3"
}
}