-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "ts-expect",
"version": "1.3.0",
"publishConfig": {
"access": "public"
},
"description": "Checks TypeScript types match expected values",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/TypeStrong/ts-expect.git"
},
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"homepage": "https://github.com/TypeStrong/ts-expect",
"bugs": {
"url": "https://github.com/TypeStrong/ts-expect/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "ts-scripts build",
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install",
"prepublishOnly": "npm run build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"files": [
"dist/",
"LICENSE"
],
"keywords": [
"typescript",
"type-check",
"assert",
"expect",
"type",
"check",
"types",
"typings"
],
"devDependencies": {
"@borderless/ts-scripts": "^0.12.0",
"@jest/globals": "^28.1.1",
"@types/node": "^14.18.21",
"typescript": "^4.7.3"
},
"typings": "dist/index.d.ts"
}