-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.09 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
{
"name": "ts-morpher",
"version": "0.0.1",
"license": "MIT",
"private": true,
"repository": "https://github.com/linbudu599/morpher.git",
"author": "linbudu599",
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "git add -A && git-cz",
"pub:patch": "yarn build && lerna publish patch",
"pub:minor": "yarn build && lerna publish minor",
"pub:beta": "yarn build && lerna publish --canary",
"test:ci": "jest --no-cache --runInBand --logHeapUsage --config jest.ci-config.ts",
"test": "jest",
"build": "ultra -r --filter '@ts-morpher/*' --topology build",
"rebuild": "ultra -r --filter '@ts-morpher/*' --topology rebuild",
"tsc-check": "ultra -r --filter '@ts-morpher/*' --topology check",
"docs:dev": "vuepress dev docs",
"docs:gen": "ts-node scripts/docs-gen.ts && git add -A",
"docs:build": "vuepress build docs",
"demo:import": "lerna exec yarn dev:import --scope @ts-morpher/example",
"demo:class": "lerna exec yarn dev:class --scope @ts-morpher/example"
},
"dependencies": {
"ts-morph": "^12.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.17.0",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/tmp": "^0.2.1",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.2",
"conventional-changelog": "^3.1.24",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"debug": "^4.3.2",
"execa": "^5.1.1",
"fliegdoc": "^0.5.1",
"fs-extra": "^10.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lerna": "^4.0.0",
"oao": "^2.0.2",
"prettier": "^2.4.1",
"tmp": "^0.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.3.0",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.22.6",
"typedoc-plugin-markdown": "^3.11.3",
"typescript": "^4.4.3",
"ultra-runner": "^3.10.5",
"vuepress": "^1.8.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}