-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 1.78 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
{
"name": "fuse-box-typechecker",
"version": "3.1.1",
"description": "Fuse-Box type checker plugin for fusebox 4.0.0 ++",
"keywords": [
"fuse-box-bundler",
"fuse-box",
"type checker",
"typescript"
],
"homepage": "https://github.com/fuse-box/fuse-box-typechecker",
"bugs": {
"url": "https://github.com/fuse-box/fuse-box-typechecker/issues"
},
"license": "MIT",
"scripts": {
"test1": "ts-node ./scripts/run_test_001",
"test2": "ts-node ./scripts/run_test_002",
"test3": "ts-node ./scripts/run_test_003_no_error",
"test4": "ts-node ./scripts/run_test_004_fusebox",
"test5": "ts-node ./scripts/run_test_005_fusebox_option_errors",
"test6": "ts-node ./scripts/run_test_006_throw",
"test7": "ts-node ./scripts/run_test_007_print_without_inspect",
"build": "node ./scripts/build"
},
"author": "Fusebox Community",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/fuse-box/fuse-box-typechecker"
},
"devDependencies": {
"@types/json5": "0.0.30",
"@types/node": "^14.14.21",
"@types/watch": "^1.0.1",
"fuse-box": "^4.0.0",
"fuse-box-typechecker": "3.0.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"json5": "^2.1.3",
"object.entries": "^1.1.3",
"tslib": "^2.1.0",
"watch": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{json,md,ts}": [
"prettier --write",
"git add"
],
"test/**/*.{json,md,ts}": [
"prettier --write",
"git add"
],
"scripts/**/*.{json,md,ts}": [
"prettier --write",
"git add"
]
}
}