-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.47 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
{
"name": "docbytest",
"version": "3.1.0",
"description": "Generate documentation from tests",
"author": "Gabriel Gregorio da Silva",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielogregorio/docbytest.git"
},
"keywords": [
"documentation",
"tests",
"test",
"supertest",
"jest",
"generate"
],
"bugs": {
"url": "https://github.com/gabrielogregorio/docbytest/issues"
},
"homepage": "https://github.com/gabrielogregorio/docbytest#readme",
"main": "./dist/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"build:watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"start": "node dist/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts",
"jest": "jest --passWithNoTests",
"clear:dirt": "rm -rf coverage dist build",
"audit": "npm audit",
"jest:coverage": "jest --coverage",
"publish-npm": "npm run jest && rm -rf ./build && npm run build && npm publish",
"prepare": "husky install",
"check": "tsc --noEmit",
"lint": "eslint -c ./.eslintrc.json --ext '.ts' 'src/**'",
"format": "prettier src/* --write"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.0",
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-plugin-module-resolver": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-spellcheck": "^0.0.20",
"husky": "^8.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.4",
"prettier": "^2.6.2",
"ts-jest": "^29.0.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
}
}