-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 967 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
{
"name": "actionsutils",
"version": "1.0.0",
"description": "utility functions and tasks using GitHub Actions mainly to debug code",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:index": "ncc build src/index.js --license licenses.txt -o dist/index",
"build:post":"ncc build src/post.js --license licenses.txt -o dist/post",
"build":"npm run build:index && npm run build:post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechuli/actionsutils.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wechuli/actionsutils/issues"
},
"homepage": "https://github.com/wechuli/actionsutils#readme",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"jsonwebtoken": "^9.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0"
}
}