-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.3 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
{
"version": "0.0.0",
"private": true,
"author": "Hoàng Văn Khải <hvksmr1996@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/ksxnodemodules/nodemonorepo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodemodules/nodemonorepo.git"
},
"bugs": {
"url": "https://github.com/ksxnodemodules/nodemonorepo/issues"
},
"devDependencies": {
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"babel-jest": "^24.9.0",
"yaml-jest": "^1.0.5",
"jest-runner-standard": "^0.0.13",
"js-yaml": "^3.13.1",
"standard": "^14.3.1",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.4",
"tslib": "^1.10.0",
"glob": "^7.1.6",
"toolcheck": "^0.1.3",
"extra-jest": "*",
"git-ts": "*",
"preloaded-node.private": "*",
"ignore-file.private": "*",
"nested-workspace-helper.private": "*",
"clean-typescript-build.private": "*",
"@types/jest": "^24.0.25",
"@types/js-yaml": "^3.12.1",
"@types/glob": "^7.1.1",
"@types/node": "^13.1.6"
},
"workspaces": [
"packages/*/*"
],
"standard": {
"env": {
"jest": true,
"node": true
}
},
"engines": {
"node": ">= 8.9.0"
},
"scripts": {
"sh": "sh",
"bash": "bash",
"zsh": "zsh",
"command-prompt": "cmd",
"exec": "bash -c",
"exec:win32": "cmd /c",
"remake-package-json": "preloaded-node sh/remake-package-json",
"generate-npmignore": "bash sh/generate-npmignore.sh",
"clean-typescript-build": "clean-typescript-build.private",
"git-tag-versions": "preloaded-node sh/git-tag-versions",
"check-publishability": "bash sh/check-publishability.sh",
"validate-packages": "bash sh/validate-packages.sh",
"mismatched-versions": "bash sh/mismatched-versions.sh",
"type-check": "tsc --noEmit",
"clean": "bash 'sh/clean.sh'",
"fix": "bash 'sh/fix.sh'",
"test": "bash 'sh/test.sh'",
"build": "bash 'sh/build.sh'",
"project-build": "bash sh/build.sh",
"project-publish": "bash sh/publish.sh",
"project-prepublish": "bash sh/prepublish.sh",
"project-postpublish": "bash sh/postpublish.sh",
"publish-tag-push": "npm run project-publish && npm run git-tag-versions && git push -u origin --tags master",
"wrkspc": "nested-wrkspc.prv"
}
}