forked from xy-graveyard/ts-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.52 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"author": {
"email": "support@xylabs.com",
"name": "XY Labs Development Team",
"url": "https://xylabs.com"
},
"bin": {
"build": "bin/build.js",
"clean": "bin/clean.js",
"compile": "bin/compile.js",
"cycle": "bin/cycle.js",
"dead": "bin/dead.js",
"deploy": "bin/deploy.js",
"deploy3": "bin/deploy3.js",
"deps": "bin/deps.js",
"fix": "bin/fix.js",
"gitlint": "bin/gitlint.js",
"gitlint-fix": "bin/gitlint-fix.js",
"lint": "bin/lint.js",
"migrate": "bin/migrate.js",
"rebuild": "bin/rebuild.js",
"reinstall": "bin/reinstall.js",
"sonar": "bin/sonar.js",
"test": "bin/test.js",
"up": "bin/up.js",
"up3": "bin/up3.js",
"updo": "bin/updo.js",
"updo3": "bin/updo3.js",
"xylabs-build": "bin/build.js",
"xylabs-clean": "bin/clean.js",
"xylabs-compile": "bin/compile.js",
"xylabs-cycle": "bin/cycle.js",
"xylabs-dead": "bin/dead.js",
"xylabs-deploy": "bin/deploy.js",
"xylabs-deploy3": "bin/deploy3.js",
"xylabs-deps": "bin/deps.js",
"xylabs-fix": "bin/fix.js",
"xylabs-gitlint": "bin/gitlint.js",
"xylabs-gitlint-fix": "bin/gitlint-fix.js",
"xylabs-lint": "bin/lint.js",
"xylabs-migrate": "bin/migrate.js",
"xylabs-rebuild": "bin/rebuild.js",
"xylabs-reinstall": "bin/reinstall.js",
"xylabs-sonar": "bin/sonar.js",
"xylabs-test": "bin/test.js",
"xylabs-up": "bin/up.js",
"xylabs-up3": "bin/up3.js",
"xylabs-updo": "bin/updo.js",
"xylabs-updo3": "bin/updo3.js"
},
"bugs": {
"email": "support@xylabs.com",
"url": "https://github.com/xylabs/ts-scripts/issues"
},
"dependencies": {
"@types/jest": "^27.4.1",
"@xylabs/eslint-config": "^2.3.22",
"@xylabs/rollup-config": "1.1.17",
"chalk": "^4",
"copyfiles": "^2.4.1",
"depcheck": "^1.4.3",
"eslint": "^8.14.0",
"eslint-plugin-sonarjs": "^0.13.0",
"jest": "^28.0.3",
"jest-sorted": "^1.0.14",
"node-cmd": "^5.0.0",
"npm-check-updates": "^12.5.11",
"npm-package-json-lint": "^6.3.0",
"npm-package-json-lint-config-default": "^5.0.0",
"parse-git-config": "^3.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"ts-jest": "^28.0.0-next.1",
"ts-prune": "^0.10.3",
"typescript": "^4.6.4"
},
"description": "TypeScript project scripts",
"devDependencies": {
"@types/node": "^17.0.31",
"@types/parse-git-config": "^3.0.1"
},
"homepage": "https://xylabs.com",
"keywords": [
"xylabs",
"utility",
"typescript"
],
"license": "LGPL-3.0",
"name": "@xylabs/ts-scripts",
"peerDependencies": {
"typescript": "^4"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/xylabs/ts-scripts.git"
},
"scripts": {
"build": "rimraf bin && yarn lint && yarn lint-pkg && yarn compile",
"clean": "rimraf *.tsbuildinfo && rm -r -f ./bin",
"compile": "tsc -p ./tsconfig.build.json",
"cycle": "node ./bin/cycle.js",
"dead": "yarn ts-prune",
"deploy": "yarn gitlint && yarn cycle && yarn build && yarn version patch -i && yarn npm publish",
"deps": "yarn depcheck",
"fix": "eslint . --fix",
"lint": "eslint .",
"lint-pkg": "npmPkgJsonLint .",
"gitlint": "node ./bin/gitlint.js",
"gitlint-fix": "node ./bin/gitlint-fix.js",
"reinstall": "rimraf ./yarn.lock && rimraf ./yarn-error.log && rimraf ./node_modules && yarn install"
},
"engines": {
"node": ">=14.16 <17"
},
"sideEffects": false,
"version": "1.0.67",
"packageManager": "yarn@3.1.1"
}