This repository has been archived by the owner on Mar 25, 2023. It is now read-only.
generated from nodejs-monorepo-templates/typescript-monorepo-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"private": true,
"author": "Hoàng Văn Khải <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ksxnodeapps/ts-schema-autogen#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodeapps/ts-schema-autogen.git"
},
"bugs": {
"url": "https://github.com/ksxnodeapps/ts-schema-autogen/issues"
},
"devDependencies": {
"standard": "^14.3.1",
"tslint": "^6.0.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.2",
"toolcheck": "^0.1.3",
"tslib": "^1.11.0",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.6",
"@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",
"standardjs": "execute runStandardJS",
"standardjs:fix": "execute runStandardJS --fix",
"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"
},
"standard": {
"env": {
"jest": true,
"node": true
}
},
"engines": {
"node": ">= 13.6.0",
"pnpm": ">= 3.8.0"
}
}