-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "compile-time-typescript",
"version": "1.4.1",
"description": "",
"keywords": [],
"homepage": "https://github.com/n4o847/compile-time-typescript#readme",
"bugs": {
"url": "https://github.com/n4o847/compile-time-typescript/issues"
},
"license": "MIT",
"author": "n4o847",
"files": [
"bin",
"lib",
"LICENSE",
"package.json",
"README.md"
],
"main": "lib/index.js",
"bin": {
"ctts": "bin/ctts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n4o847/compile-time-typescript.git"
},
"scripts": {
"prepare": "webpack --mode=production",
"start": "ts-node src",
"lint": "eslint src",
"test": "jest"
},
"dependencies": {
"tmp-promise": "^3.0.3",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"jest": "^28.1.1",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
}
}