-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.62 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
61
62
63
64
{
"name": "mkver",
"version": "3.0.2",
"description": "Node.js access to your app's version and release metadata",
"main": "./dist/mkver.js",
"types": "./dist/mkver.d.ts",
"scripts": {
"prettier": "prettier --write src/*.ts",
"lint": "eslint --fix src/*.ts",
"premake": "rimraf dist",
"make": "tsc && chmod +x dist/mkver.js",
"pretest": "yarn make && yarn lint",
"test": "mocha dist/**/*.spec.js",
"ci": "yarn install --frozen-lockfile",
"release": "release-it"
},
"bin": {
"mkver": "./dist/mkver.js"
},
"repository": {
"type": "git",
"url": "https://github.com/photostructure/mkver.git"
},
"keywords": [
"Version"
],
"author": "Matthew McEachen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/photostructure/mkver/issues"
},
"homepage": "https://github.com/photostructure/mkver#readme",
"release-it": {
"hooks": {
"before:init": "yarn test"
},
"src": {
"tagName": "v%s",
"commitArgs": "-S",
"tagArgs": "-S"
},
"github": {
"release": true
}
},
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.7",
"@types/semver": "^7.5.8",
"chai": "^4.3.10",
"chai-as-promised": "^8.0.0",
"eslint": "^8.57.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^5.0.10",
"semver": "^7.6.3",
"source-map-support": "^0.5.21",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
}
}