-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 2.47 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
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
{
"name": "tsc-multi",
"version": "1.1.0",
"description": "Compile multiple TypeScript projects into multiple targets.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"tsc-multi": "bin/tsc-multi.js"
},
"scripts": {
"build": "tsc -P tsconfig.build.json",
"watch": "npm run build -- --watch",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"clean": "rm -rf dist",
"test": "npm-run-all test:*",
"test:integration": "jest --runInBand --config integration/jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tommy351/tsc-multi.git"
},
"keywords": [
"typescript",
"tsc",
"ts",
"compiler"
],
"files": [
"bin",
"dist"
],
"author": "Tommy Chen <tommy351@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tommy351/tsc-multi/issues"
},
"homepage": "https://github.com/tommy351/tsc-multi#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"debug": "^4.3.4",
"fast-glob": "^3.2.12",
"get-stdin": "^8.0.0",
"p-all": "^3.0.0",
"picocolors": "^1.0.0",
"signal-exit": "^3.0.7",
"string-to-stream": "^3.0.1",
"superstruct": "^1.0.3",
"tslib": "^2.5.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/debug": "^4.1.7",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/signal-exit": "^3.0.1",
"@types/tmp": "^0.2.3",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"husky": "^4.3.7",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"jest-file-snapshot": "^0.5.0",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"tmp-promise": "^3.0.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"ts-transformer-keys": "^0.4.4",
"ttsc": "^0.3.1",
"typescript": "^5.0.3",
"typescript-4": "npm:typescript@4.3.x"
},
"peerDependencies": {
"typescript": ">=4.3.0"
}
}