-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.42 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@plq/is",
"version": "1.6.0",
"description": "Small utility package that provides a set of functions to check if a given argument is of a certain type",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint ./src/**/*.ts",
"test": "jest",
"build": "tsc",
"release": "dotenv release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akurganow/is.git"
},
"release-it": {
"hooks": {
"before:init": [
"npm run lint",
"npm test",
"npm run build"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
},
"keywords": [
"is",
"check",
"test",
"type",
"types",
"javascript",
"typescript"
],
"author": "Alexander Kurganov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akurganow/is/issues"
},
"homepage": "https://github.com/Akurganow/is#readme",
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"dotenv-cli": "^7.3.0",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"release-it": "^17.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}