-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
54
55
56
57
58
59
60
{
"name": "calver-ci",
"version": "22.9.13-rc.30",
"packageManager": "[email protected]",
"scripts": {
"calver-ci": "ts-node src/index.ts",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"clean": "rm -rf ./build",
"build": "yarn clean && tsc && chmod +x build/index.js",
"typecheck": "tsc --noEmit",
"usage": "./scripts/usage.sh"
},
"main": "./build/index.js",
"bin": "./build/index.js",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/busla/calver-ci.git"
},
"keywords": [
"calver",
"calendar",
"versioning",
"semver",
"semantic",
"versioning",
"versioning",
"cli"
],
"author": {
"name": "Jón Levy",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/busla/calver-ci/issues"
},
"homepage": "https://github.com/busla/calver-ci#readme",
"devDependencies": {
"@types/node": "^18.7.16",
"@types/slug": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"arg": "^5.0.2",
"calver": "^22.8.4"
}
}