-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
{
"name": "setup-advinst",
"version": "2.0.0",
"private": true,
"description": "setup advinst action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"clean": "rimraf dist && rimraf lib",
"rebuild": "npm run clean && npm run build",
"prettier": "prettier --check **/*.ts",
"prettier-fix": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"pack": "ncc build ./lib/pre.js -o ./dist/pre --source-map && ncc build ./lib/main.js -o ./dist/main --source-map && ncc build ./lib/post.js -o ./dist/post --source-map",
"test": "jest",
"test-coverage": "jest --coverage",
"dist": "npm run rebuild && npm run prettier && npm run lint && npm run pack && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/advinst-github-action.git"
},
"keywords": [
"actions",
"advist",
"advanced installer",
"setup",
"download",
"install",
"build",
"aip"
],
"author": "Caphyon",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/io": "1.1.3",
"@actions/tool-cache": "2.0.1",
"compare-versions": "6.1.0",
"config-ini-parser": "1.6.1"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.57.0",
"eslint-plugin-github": "4.10.2",
"eslint-plugin-jest": "28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"prettier": "3.2.5",
"rimraf": "5.0.7",
"ts-jest": "29.1.2",
"typescript": "5.4.5"
}
}