-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "@versatiles/release-tool",
"version": "1.2.6",
"description": "VersaTiles release and documentation tools",
"bin": {
"vrt": "./dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && chmod +x dist/index.js",
"check": "npm run lint && npm run build && npm run test",
"doc": "npx vrt cmd2md vrt | npx vrt insertmd README.md '# Command'",
"lint": "eslint . --color",
"prepack": "npm run build && npm run doc",
"release": "npm run build && npx vrt release-npm",
"test-coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"upgrade": "npm-check-updates -u && rm -f package-lock.json; rm -rf node_modules; npm i && npm update"
},
"author": "yetzt <[email protected]>, Michael Kreil <[email protected]>",
"license": "Unlicense",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/versatiles-org/node-versatiles.git"
},
"homepage": "https://github.com/versatiles-org/node-versatiles/blob/main/versatiles-release-tool/README.md",
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"npm-check-updates": "^17.1.9",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"dependencies": {
"@inquirer/select": "^4.0.1",
"commander": "^12.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"typedoc": "^0.26.10"
}
}