-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "ts-node-test",
"version": "0.4.4",
"description": "Use the Node.js test runner, but with TypeScript via ts-node",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ts-node-test": "dist/bin.js"
},
"scripts": {
"build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc",
"lint": "tsc --noEmit -p tsconfig.lint.json && eslint .",
"lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix .",
"test": "npm run build && node dist/bin.js test/",
"prepack": "npm run build"
},
"engines": {
"node": ">=18.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meyfa/ts-node-test.git"
},
"keywords": [
"nodejs",
"test",
"test runner",
"testing",
"typescript",
"ts-node"
],
"author": "Fabian Meyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/meyfa/ts-node-test/issues"
},
"homepage": "https://github.com/meyfa/ts-node-test#readme",
"devDependencies": {
"@meyfa/eslint-config": "8.0.1",
"@types/node": "22.10.1",
"@types/sinon": "17.0.3",
"@types/yargs": "17.0.33",
"eslint": "9.16.0",
"sinon": "19.0.2",
"typescript": "5.7.2"
},
"dependencies": {
"ts-node": "10.9.2",
"yargs": "17.7.2"
},
"peerDependencies": {
"typescript": "^4.0.0 || ^5.0.0"
}
}