-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (65 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (65 loc) · 1.67 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "typeguard",
"version": "0.1.5",
"description": "TypeScript TypeGuards",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc -b tsconfig.json",
"build:watch": "tsc -b tsconfig.json --watch --preserveWatchOutput",
"test": "yarn run build && jest --no-cache",
"test:watch": "yarn run build && concurrently \"npm:build:watch\" 'jest --no-cache --watchAll'",
"postinstall": "yarn run build",
"postversion": "git push --tags && yarn publish . --non-interactive --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
"release": "yarn build && yarn test && yarn version --patch --non-interactive"
},
"files": [
"dist",
"lib",
"src",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/densebrain/typeguard.git"
},
"keywords": [
"typescript",
"guard",
"typeguard",
"typesafe",
"type",
"check"
],
"author": "Jonathan Glanz",
"license": "MIT",
"bugs": {
"url": "https://github.com/densebrain/typeguard/issues"
},
"jest": {
"verbose": true,
"testRegex": "lib\\/test\\/.*\\.spec\\.js$",
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"homepage": "https://github.com/densebrain/typeguard#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.8",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}