-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "@javarome/testscript",
"type": "module",
"author": "Jérôme Beau <[email protected]> (https://javarome.com)",
"version": "0.13.0",
"description": "Simple, straightforward TypeScript test solution",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"testscript": "bin/index.ts"
},
"license": "MIT",
"homepage": "https://github.com/Javarome/testscript#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Javarome/testscript.git"
},
"scripts": {
"prebuild": "npm install",
"build": "rm -Rf dist && tsc --project tsconfig.prod.json",
"prepublishOnly": "npm run build && npm test",
"test": "npx .",
"test-one": "tsx bin/index.ts --filter=describe,test"
},
"dependencies": {
"glob": "~10.3.10"
},
"devDependencies": {
"@types/node": "^20.9.2",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"keywords": [
"test",
"unit-testing",
"typescript"
],
"publishConfig": {
"access": "public"
}
}