-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@worktile/pkg-manager",
"version": "0.1.4",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"bin"
],
"bin": {
"wpm": "bin/wpm.js",
"release": "bin/release.js"
},
"engines": {
"node": "^12.20.0 || >=14.0.0"
},
"scripts": {
"start": "yarn start:docs",
"build": "tsc --build --clean && tsc --build",
"prerelease": "yarn build",
"release-only": "ts-node ./src/commands/index.ts release",
"release": "yarn release-only",
"pub": "ts-node ./src/commands/index.ts publish",
"pub-only": "npm publish --access=public",
"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 --prod",
"build:docs-gh-pages": "docgeni build --prod --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.1.0",
"@types/shelljs": "^0.8.8",
"commit-and-tag-version": "12.4.0",
"cosmiconfig": "^7.0.0",
"inquirer": "^8.1.1",
"lodash": "^4.17.21",
"shelljs": "^0.8.4",
"simple-git": "^2.40.0",
"write-json-file": "^4.3.0",
"yargs": "^17.0.1"
},
"peerDependencies": {
"conventional-changelog-angular": "^5.0.13"
},
"devDependencies": {
"@docgeni/angular": "16.0.0",
"@docgeni/cli": "2.2.1",
"@docgeni/template": "2.2.1",
"@types/chai": "^4.2.19",
"@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",
"@types/conventional-changelog-config-spec": "2.1.5",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"typescript": "5.4.5"
}
}