-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "ts-node-test-register",
"version": "10.0.0",
"description": "Load from `test/tsconfig.json` with ts-node.",
"homepage": "https://github.com/azu/ts-node-test-register",
"bugs": {
"url": "https://github.com/azu/ts-node-test-register/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/ts-node-test-register.js",
"types": "lib/ts-node-test-register.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/ts-node-test-register.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"test:example": "(cd example && yarn && yarn test)",
"watch": "tsc -p . --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"read-pkg": "^5.2.0"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^18.19.59",
"cross-env": "^7.0.3",
"lint-staged": "^13.3.0",
"mocha": "^10.7.3",
"prettier": "^2.8.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
},
"peerDependencies": {
"ts-node": "^10.9.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"husky": ""
}