generated from codibre/boilerplate-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.52 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "is-this-a-pigeon",
"description": "This project is just a template for creation of new projects",
"version": "0.11.0",
"author": {
"name": "Thiago O Santos <[email protected]>"
},
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"doc": "npx typedoc",
"lint": "npm run lint:format && npm run lint:style",
"lint:fix": "npm run lint:format:fix && npm run lint:style:fix",
"build": "nest build",
"test": "jest test/unit",
"test:watch": "jest test/unit --watch",
"test:coverage": "jest test/unit --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest test/e2e",
"clear": "npm run clear:build && npm run clear:modules",
"clear:build": "del-cli ./dist",
"clear:modules": "del-cli ./node_modules",
"prebuild": "npm run clear:build && del-cli tsconfig.tsbuildinfo",
"preaction:verify:update-modules": "npm run action:verify:update-modules:check",
"action:verify:update-modules": "npm run action:verify:update-modules:reinstall && npm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint",
"lint:style:fix": "eslint --fix",
"prepare": "husky"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/codibre/is-this-a-pigeon.git"
},
"homepage": "https://github.com/codibre/is-this-a-pigeon#readme",
"bugs": {
"url": "https://github.com/codibre/is-this-a-pigeon/issues"
},
"keywords": [
"typeguard",
"type",
"guard",
"callbacks"
],
"license": "MIT",
"devDependencies": {
"@nestjs/cli": "^10.4.5",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/jest": "^29.5.13",
"@types/lint-staged": "^13.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"del-cli": "^5.1.0",
"eslint": "^9.11.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-callslike": "^0.2.1",
"jest-extended": "^4.0.2",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.6.2"
}
}