forked from swimauger/tsc-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 820 Bytes
/
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
{
"name": "tsc-hooks",
"version": "1.1.2-beta.2",
"description": "Add tsc compiler hooks to your TypeScript project",
"main": "run.js",
"repository": "https://github.com/swimauger/tsc-hooks.git",
"author": "Mark Auger",
"license": "Apache-2.0",
"private": false,
"keywords": [
"TypeScript",
"Compilation",
"Hook"
],
"scripts": {
"postinstall": "node run postinstall",
"postuninstall": "node run postuninstall",
"test": "docker run -it tsc-hooks-test",
"inspect:tests": "docker run -it tsc-hooks-test bash",
"build:tests": "docker build . -t tsc-hooks-test",
"clean:tests": "docker rmi tsc-hooks-test --force"
},
"dependencies": {
"json5": "^2.2.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"chalk": "^4.1.2",
"glob": "^7.1.7"
}
}