This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.69 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
{
"private": true,
"author": "Hoàng Văn Khải <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/nodejs-monorepo-templates/typescript-monorepo-esm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nodejs-monorepo-templates/typescript-monorepo-esm.git"
},
"bugs": {
"url": "https://github.com/nodejs-monorepo-templates/typescript-monorepo-esm/issues"
},
"devDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"toolcheck": "^0.1.4",
"tslib": "^2.0.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@tools/scripts": "file:./tools/scripts"
},
"scripts": {
"new": "execute new",
"add": "execute add",
"mismatches": "execute mismatches",
"repl": "node tools/repl/bin.js",
"console": "node tools/repl/bin.js",
"preloaded-node": "node tools/preloaded-node/bin.js",
"execute": "execute",
"glob": "execute glob",
"workspace": "execute workspace",
"sane-fmt": "execute runSaneFmt",
"sane-fmt:fix": "execute runSaneFmtFix",
"tslint": "execute runTSLint",
"tslint:fix": "execute runTSLint --fix",
"test": "execute test",
"test:ci": "execute testAll",
"test:no-coverage": "execute testWithoutCoverage",
"build": "execute build",
"clean": "execute clean",
"clean-typescript-build": "execute cleanTypescriptBuild",
"git-tag-versions": "execute gitTagVersions",
"git-tag-versions:dry": "execute gitTagVersions --dry",
"project-publish": "execute publish",
"project-publish:dry": "execute publish --dry",
"publish-tag-push": "execute publishTagPush"
},
"engines": {
"node": ">= 12.11.0",
"pnpm": ">= 3.8.0"
}
}