-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 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
{
"name": "package-deployer",
"version": "0.9.6",
"description": "A useful tool to deploy an NPM version via CLI",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"pre-deploy": "npm run build && npm run clean",
"deploy": "deploy-pkg package-deployer",
"clean": "rmdir lib /s/q && rmdir dist /s/q",
"action-build-mac": "export NODE_OPTIONS=--openssl-legacy-provider && ncc build action.index.js -o dist && git add ./dist/index.js && git add ./action.index.js && git add ./action.yml && git commit -m \"Updating GitHub Action\"",
"pkg-build": "export NODE_OPTIONS=--openssl-legacy-provider && ncc build npm.index.js -o lib",
"build-and-commit-mac": "git add . && rmdir dist /s/q && npm run action-build-mac && git push origin HEAD",
"action-build-win": "ncc build action.index.js -o dist && git add ./dist/index.js && git add ./action.index.js && git add ./action.yml && git commit -m \"Updating GitHub Action\"",
"build-and-commit": "git add . && rmdir dist /s/q && npm run action-build-win && git push origin HEAD"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danitseitlin/package-deployer.git"
},
"author": "Dani Tseitlin",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/danitseitlin/package-deployer/issues"
},
"homepage": "https://github.com/danitseitlin/package-deployer#readme",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0",
"@actions/github": "^5.0.0",
"chalk": "^4.1.0",
"node": "^17.1.0"
},
"bin": {
"deploy-pkg": "./bin/node ../../../lib/index.js"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^17.0.23",
"@zeit/ncc": "^0.22.3",
"typescript": "^4.1.2"
}
}