-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·38 lines (38 loc) · 941 Bytes
/
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
{
"name": "ts-spec",
"version": "1.6.0",
"description": "A small library for testing your types",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/geoffreytools/ts-spec.git"
},
"keywords": [
"typescript",
"test",
"types"
],
"author": "Geoffrey Gourdet",
"license": "ISC",
"files": [
"dist/*"
],
"bugs": {
"url": "https://github.com/geoffreytools/ts-spec/issues"
},
"homepage": "https://github.com/geoffreytools/ts-spec#readme",
"dependencies": {
"free-types-core": "^0.8.0",
"ts-trace": "github:geoffreytools/ts-trace"
},
"devDependencies": {
"typescript": "^4.9.5"
},
"scripts": {
"test": "tsc && tsc -p ./tsconfig-test-non-strict.json",
"build": "tsc -p ./tsconfig-build.json",
"watch": "tsc -p ./tsconfig-build.json --watch",
"trace": "bash ./node_modules/ts-trace/ts-trace.sh"
}
}