-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 KB
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
{
"name": "semci",
"version": "0.1.10",
"description": "Git helper to create semver commits and name branches accordingly",
"main": "dist/index.js",
"bin": {
"semci": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"build": "rm -rf dist; tsc && cp package.json dist/ && chmod +x dist/index.js",
"pkg": "pkg dist/index.js --targets=node14-macos-x64,node14-linux-x64 --out-path bin && mv bin/index-macos bin/semci-macos && mv bin/index-linux bin/semci-linux",
"compress-linux": "zip -j bin/semci-linux.zip bin/semci-linux",
"compress-macos": "zip -j bin/semci-macos.zip bin/semci-macos"
},
"author": "Benjamin Falk <lumio@lumio.at> (https://lumio.at/)",
"bugs": "https://github.com/lumio/semci/issues",
"license": "GPL-3.0-only",
"files": [
"dist/**/*"
],
"dependencies": {
"change-case": "3.1.0",
"commander": "3.0.2",
"escape-string-regexp": "2.0.0",
"kleur": "3.0.3",
"prompts": "2.3.0"
},
"devDependencies": {
"@types/commander": "2.12.2",
"@types/node": "14.0.14",
"@types/prompts": "2.0.8",
"pkg": "4.4.9",
"ts-node": "9.1.1",
"typescript": "3.9.5"
}
}