forked from joncloud/makensis-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 999 Bytes
/
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
{
"name": "nsis-action",
"version": "3.0.0",
"description": "Nullsoft scriptable install system action",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "esbuild src/index.js --bundle --platform=node --target=node16 --minify --outfile=dist/index.cjs",
"test": "mocha --reporter spec --timeout 5000 test/**.spec.js",
"test:watch": "mocha --reporter spec --timeout 5000 --watch --watch-files **/*.js test/**.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joncloud/nsis-action.git"
},
"keywords": [],
"author": "joncloud",
"license": "MIT",
"bugs": {
"url": "https://github.com/joncloud/nsis-action/issues"
},
"homepage": "https://github.com/joncloud/nsis-action#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"esbuild": "^0.17.4",
"mocha": "^10.2.0",
"yaml": "^2.2.1"
}
}