-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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": "@wezom/type-guards",
"version": "0.1.0",
"description": "Simple TypeScript type guards",
"files": [
"dist"
],
"type": "module",
"types": "./dist/@types/index.d.ts",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "npm run build-es && npm run build-cjs",
"build-es": "del-cli dist/es && tsc --project tsconfig.json",
"build-cjs": "del-cli dist/cjs && tsc --project tsconfig.cjs.json",
"format": "prettier \"./src/**/*.ts\" --check --write",
"test": "vitest",
"coverage": "vitest run --coverage && istanbul-badges-readme && prettier \"./README.md\" --check --write"
},
"keywords": [
"TypeScript",
"type",
"guard",
"guards"
],
"author": {
"name": "Oleg Dutchenko",
"email": "dutchenko.o.dev@gmail.com"
},
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/node": "^20.3.1",
"@vitest/coverage-v8": "^0.32.2",
"@wezom/toolkit-jest": "^3.4.1",
"del-cli": "^5.0.0",
"from-cwd": "^1.0.1",
"istanbul-badges-readme": "^1.8.5",
"jsdom": "^22.1.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}