-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "bloop-server",
"version": "2.0.1",
"description": "Server library for the Bloop Box protocol",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"lint": "eslint .",
"test": "jest test --coverage --detectOpenHandles",
"prepare": "husky install"
},
"author": "Ben Scholzen 'DASPRiD' <mail@dasprids.de>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/bloop-box/bloop-server-node.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"Bloop-Box",
"Server",
"Typescript"
],
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.2.4",
"@types/node": "^20.8.8",
"eslint": "^8.29.0",
"eslint-config-dasprid": "^0.3.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^15.0.2",
"rollup": "^4.1.4",
"ts-jest": "^29.0.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"winston": "^3.8.2"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}