-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.51 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": "setup-igor",
"author": "Shi Chen",
"version": "1.0.4",
"main": "./build/index.js",
"type": "module",
"files": [
"build/lib/**/*",
"build/index.*",
"build/types/**/*"
],
"scripts": {
"release": "ncc build src/index.ts -o dist",
"test:main": "npm run release && node -r dotenv/config ./dist/index.js",
"test": "npm run build && mocha --enable-source-maps --bail ./build/test/",
"build": "rimraf build && tsc && tsc-alias",
"preversion": "npm run release",
"version": "npm run format && git add -A",
"postversion": "git push --follow-tags",
"format": "prettier src/**/*.ts -w",
"cli": "node ./build/cli/cli.js --help",
"submodule": "git submodule update --init --recursive "
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"adm-zip": "^0.5.10",
"fkill": "^9.0.0",
"fs-extra": "^11.2.0",
"plist": "^3.1.0",
"process-exists": "^5.0.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/chai": "^4.3.12",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.25",
"@types/plist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vercel/ncc": "^0.38.1",
"chai": "^5.1.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2"
}
}