-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.74 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.74 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@worktile/pkg-manager",
"version": "0.2.0-next.8",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"bin"
],
"bin": {
"wpm": "bin/wpm.js",
"release": "bin/release.js"
},
"packageManager": "pnpm@11.3.0",
"engines": {
"node": "^12.20.0 || >=14.0.0",
"pnpm": ">=9.0.0",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm"
},
"scripts": {
"start": "pnpm run start:docs",
"build": "tsc --build --clean tsconfig.lib.json && tsc --build tsconfig.lib.json",
"prerelease": "pnpm run build",
"release-only": "ts-node ./src/commands/index.ts release",
"release": "pnpm run release-only",
"pub": "ts-node ./src/commands/index.ts publish",
"pub-only": "npm publish --access=public",
"pub-next": "pnpm run build && pnpm run pub-next-only",
"pub-next-only": "npm publish --access=public --tag=next",
"wpm": "ts-node ./src/commands/index.ts",
"test": "NODE_ENV=test mocha src/**/*.spec.ts --timeout 999999 --require ts-node/register/transpile-only",
"start-docs": "docgeni serve --port 4500",
"build-docs": "docgeni build --configuration production",
"build-docs-gh-pages": "docgeni build --configuration production --base-href=/pkg-manager/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worktile/pkg-manager.git"
},
"author": "why520crazy",
"license": "ISC",
"bugs": {
"url": "https://github.com/worktile/pkg-manager/issues"
},
"homepage": "https://github.com/worktile/pkg-manager#readme",
"dependencies": {
"@docgeni/toolkit": "^2.8.0-next.6",
"commit-and-tag-version": "^12.4.0",
"conventional-changelog": "^7.2.0",
"conventional-changelog-angular": "^8.3.1",
"cosmiconfig": "^9.0.0",
"inquirer": "^8.1.1",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"minimatch": "^10.2.5",
"shelljs": "^0.8.4",
"simple-git": "^2.40.0",
"write-json-file": "^4.3.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"conventional-changelog-angular": "^8.3.1",
"@docgeni/angular": "21.0.0"
},
"devDependencies": {
"@docgeni/angular": "21.0.1",
"@docgeni/cli": "2.8.0-next.8",
"@docgeni/template": "2.8.0-next.8",
"zone.js": "0.16.2",
"@types/chai": "^4.2.19",
"@types/shelljs": "^0.8.8",
"@types/conventional-changelog-config-spec": "2.1.5",
"@types/fs-extra": "^9.0.11",
"@types/inquirer": "^7.3.2",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@types/node": "^18.14.6",
"@types/semver": "^7.3.6",
"@types/sinon": "^17.0.1",
"@types/yargs": "^17.0.0",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "6.0.3"
}
}