-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.24 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
{
"name": "@dulliag/logger.js",
"version": "2.1.1",
"description": "Create logs for your application using @dulliag/logger.js",
"keywords": [],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"prepublishOnly": "tsc",
"build": "npx tsc",
"start": "node index.js",
"release": "standard-version"
},
"author": "tklein1801",
"license": "ISC",
"homepage": "https://dulliag.de",
"repository": {
"type": "git",
"url": "git://github.com/DulliAG/logger.js.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"bugs": {
"url": "https://github.com/DulliAG/logger.js/issues"
},
"files": [
"src",
"lib"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"mariadb": "^3.0.0",
"pg": "^8.7.3"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/pg": "^8.6.5",
"jest": "^28.1.1",
"mariadb": "^3.0.0",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.5",
"typescript": "^4.6.3"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"directories": {
"lib": "lib",
"test": "test"
}
}