-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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": "jestype",
"description": "Typescript Type Tester to use with Jest",
"author": "aurospire",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/aurospire/jestype.git"
},
"license": "MIT",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {}
},
"config": {
"watch": "./src;package*.json"
},
"scripts": {
"start": "node ./dist/index.js",
"watch": "nodemon -e ts,js,tsx,jsx,json --watch src --watch 'package*.json' --exec 'tsc -p . && node ./dist/index.js || exit 1'",
"build": "tsc -p .",
"test": "jest --config test/jest.config.ts",
"vigil": "nodemon -e ts,js,tsx,jsx,json --watch src --watch 'package*.json' --watch test --exec 'tsc -p . && jest --config test/jest.config.ts || exit 1'"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}