-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1012 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
{
"name": "static-type-assert",
"version": "4.0.1",
"description": "Asserting type with help of TypeScript compiler",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ksxnodemodules/static-type-assert.git"
},
"keywords": [
"assert",
"type",
"typescript"
],
"author": "Hoàng Văn Khải <hvksmr1996@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksxnodemodules/static-type-assert/issues"
},
"homepage": "https://github.com/ksxnodemodules/static-type-assert#readme",
"scripts": {
"fmt": "sane-fmt --write index.d.ts index.js test.ts",
"test:tsc": "tsc --noEmit",
"test:fmt": "sane-fmt index.d.ts index.js test.ts",
"test": "pnpm run test:tsc && pnpm run test:fmt"
},
"dependencies": {
"typescript-compare": "^0.0.2"
},
"devDependencies": {
"@sane-fmt/wasm32-wasi": "^0.11.0",
"typescript": "~4.0.0"
},
"peerDependencies": {
"typescript": "~4.0.0 || ^3.0.0"
}
}