-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.06 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
{
"name": "buhoi",
"version": "4.0.0",
"description": "Because drunk people can create web apps too.",
"module": "src/client/index.js",
"main": "src/index.js",
"repository": {
"url": "git@github.com:titarenko/buhoi.git",
"type": "git"
},
"author": "Constantin Titarenko <constantin.titarenko@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"bluebird": "3.7.2",
"busboy": "1.6.0",
"bytes": "3.1.2",
"compression": "1.7.4",
"content-type": "1.0.5",
"cookie": "0.6.0",
"express": "4.19.2",
"glob": "11.0.0",
"http-shutdown": "1.2.2",
"human-interval": "2.0.1",
"knex": "3.1.0",
"korrekt": "2.2.4",
"lru-cache": "11.0.0",
"memoizee": "0.4.17",
"mime": "2.6.0",
"morgan": "1.10.0",
"mqu": "1.8.0",
"node-schedule": "2.1.1",
"pg": "8.12.0",
"raw-body": "2.5.2",
"redis": "4.7.0",
"totlog": "2.1.1",
"webpack": "5.93.0"
},
"devDependencies": {
"@eslint/compat": "1.1.1",
"@stylistic/eslint-plugin": "2.6.1",
"axios": "1.7.7",
"coveralls-next": "^4.2.1",
"eslint": "9.8.0",
"eslint-plugin-unused-imports": "4.0.1",
"husky": "9.1.4",
"lint-staged": "15.2.7",
"mocha": "10.7.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "17.0.0",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "19.0.2",
"webpack-dev-middleware": "7.3.0",
"webpack-hot-middleware": "2.26.1"
},
"scripts": {
"precommit": "lint-staged",
"prepush": "npm t",
"lint": "eslint .",
"test": "mocha -r should --require tests/mocha-hooks.js --recursive tests",
"test-coverage": "nyc npm run test && nyc report --reporter=text-lcov > .nyc_output/coverage.lcov",
"release-patch": "npm t && npm version patch && npm publish && git push",
"release-minor": "npm t && npm version minor && npm publish && git push",
"release-major": "npm t && npm version major && npm publish && git push"
},
"lint-staged": {
"*.js": "eslint"
},
"nyc": {
"exclude": [
"tests/**/*.js"
]
}
}