-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.88 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
{
"name": "mtsc",
"version": "4.0.0",
"description": "Monorepo solution for multiple typescript projects. Watch multiple typescript compilers concurrently at the same time, without losing output!",
"main": "lib/index.js",
"packageManager": "pnpm@9.10.0+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"bin": {
"mtsc": "./lib/cli/cli.js"
},
"scripts": {
"prepublish": "pnpm build",
"build": "rm -rf lib && tsc",
"test": "jest",
"test:watch": "jest --watch --coverage",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:audit": "snyk test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidsdo/multipleTypescriptCompilers.git"
},
"keywords": [
"mono",
"repo",
"monorepo",
"multiple",
"typescript",
"projects",
"compilers",
"compilations",
"concurrent",
"vscode",
"tasks",
"tsc"
],
"author": "guidsdo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guidsdo/multipleTypescriptCompilers/issues"
},
"homepage": "https://github.com/guidsdo/multipleTypescriptCompilers#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^8.3.0",
"moment": "^2.29.1",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.0.0",
"@types/shelljs": "^0.8.15",
"coveralls": "^3.1.1",
"jest": "^29.7.0",
"mtsc": "workspace:*",
"prettier": "^3.3.3",
"snyk": "^1.1293.0",
"ts-jest": "^29.2.5",
"typescript": "~5.6.2"
}
}