-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"name": "veslo",
"version": "1.0.0",
"description": "A veslow is real, real, real slow.",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"test": "mocha test/**/*.spec.ts --require ts-node/register",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vanpipy/veslo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vanpipy/veslo/issues"
},
"homepage": "https://github.com/vanpipy/veslo#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.10",
"@types/path-to-regexp": "^1.7.0",
"@types/sinon": "^10.0.13",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"chai": "^4.3.6",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.21",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.4",
"sinon": "^14.0.0",
"standard-version": "^9.5.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"engines": {
"node": ">= 16"
},
"lint-staged": {
"*.{ts,js}": ["prettier --write"]
},
"dependencies": {
"path-to-regexp": "^6.2.1",
"pino": "^8.14.1"
}
}