1 | {
|
2 | "name": "ts-node-test-register",
|
3 | "version": "10.0.0",
|
4 | "description": "Load from `test/tsconfig.json` with ts-node.",
|
5 | "homepage": "https://github.com/azu/ts-node-test-register",
|
6 | "bugs": {
|
7 | "url": "https://github.com/azu/ts-node-test-register/issues"
|
8 | },
|
9 | "license": "MIT",
|
10 | "author": "azu",
|
11 | "files": [
|
12 | "bin/",
|
13 | "lib/",
|
14 | "src/"
|
15 | ],
|
16 | "main": "lib/ts-node-test-register.js",
|
17 | "types": "lib/ts-node-test-register.d.ts",
|
18 | "directories": {
|
19 | "lib": "lib",
|
20 | "test": "test"
|
21 | },
|
22 | "repository": {
|
23 | "type": "git",
|
24 | "url": "https://github.com/azu/ts-node-test-register.git"
|
25 | },
|
26 | "scripts": {
|
27 | "build": "cross-env NODE_ENV=production tsc -p .",
|
28 | "prepublish": "npm run --if-present build",
|
29 | "test": "mocha \"test/**/*.ts\"",
|
30 | "test:example": "(cd example && yarn && yarn test)",
|
31 | "watch": "tsc -p . --watch",
|
32 | "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
|
33 | "prepare": "git config --local core.hooksPath .githooks"
|
34 | },
|
35 | "dependencies": {
|
36 | "read-pkg": "^5.2.0"
|
37 | },
|
38 | "devDependencies": {
|
39 | "@types/mocha": "^8.2.2",
|
40 | "@types/node": "^15.6.1",
|
41 | "cross-env": "^7.0.3",
|
42 | "lint-staged": "^11.0.0",
|
43 | "mocha": "^8.4.0",
|
44 | "prettier": "^2.3.0",
|
45 | "ts-node": "^10.0.0",
|
46 | "typescript": "^4.2.4"
|
47 | },
|
48 | "peerDependencies": {
|
49 | "ts-node": "^10.0.0"
|
50 | },
|
51 | "lint-staged": {
|
52 | "*.{js,jsx,ts,tsx,css}": [
|
53 | "prettier --write"
|
54 | ]
|
55 | },
|
56 | "prettier": {
|
57 | "singleQuote": false,
|
58 | "printWidth": 120,
|
59 | "tabWidth": 4,
|
60 | "trailingComma": "none"
|
61 | },
|
62 | "husky": {
|
63 | "hooks": {
|
64 | "post-commit": "git reset",
|
65 | "pre-commit": "lint-staged"
|
66 | }
|
67 | }
|
68 | }
|