-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "handy-types",
"version": "2.1.0",
"description": "A collection of small utility functions to check variable types",
"keywords": [
"types",
"validator",
"type-checker",
"type alias"
],
"author": {
"name": "Sifat Hossain",
"email": "hsifat@protonmail.com",
"role": "Developer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h-sifat/handy-types.git"
},
"bugs": {
"url": "https://github.com/h-sifat/handy-types/issues"
},
"homepage": "https://github.com/h-sifat/handy-types#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "webpack",
"prebuild": "npm test",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^27.5.2",
"jest": "^27.2.5",
"ts-jest": "^27.0.5",
"ts-loader": "^9.3.1",
"typescript": "^4.4.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}