-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "@konecty/jest-doc-reporter",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Konecty Informática Ltda <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"start": "cross-env NODE_OPTIONS='--inspect' nodemon --watch 'src/' --exec 'ts-node src/index.ts' -e ts | pino-pretty --colorize --translateTime",
"test": "jest --detectOpenHandles --runInBand",
"test:watch": "jest --runInBand --watchAll",
"build": "babel src --out-dir dist --no-copy-ignored --extensions .ts",
"lint": "eslint src/**/*.ts --fix",
"prettier": "prettier --write src",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16": "^1.0.2",
"@types/chai": "^4.3.1",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/mkdirp": "^1.0.2",
"@types/node": "^17.0.27",
"@types/sinon": "^10.0.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chai": "^4.3.6",
"chalk": "4",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"jest": "27",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2",
"sinon": "^14.0.0",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"fastify": "^3.28.0",
"fastify-plugin": "^3.0.1",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Konecty/jest-doc-reporter.git"
}
}