-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "@appku/stashku-log",
"version": "0.3.3",
"description": "A StashKu middleware for outputing log messages to console or to a flat file.",
"repository": {
"type": "git",
"url": "[email protected]:appku/stashku.git"
},
"bugs": {
"url": "https://github.com/appku/stashku/issues"
},
"author": "Append Media, LLC",
"license": "MS-PL",
"keywords": [
"stashku",
"log",
"logging",
"console"
],
"type": "module",
"main": "log-middleware.js",
"scripts": {
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose --coverage",
"test-ci": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose -ci",
"lint": "npx eslint ./",
"docs": "npx jsdoc -c jsdoc.json --readme README.md",
"serve-docs": "npx serve ./docs"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/docs/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/",
"/docs/"
]
},
"dependencies": {
"@appku/stashku": "^1.1.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"@appku/jsdoc-template": "^1.1.9",
"@types/jest": "^27.4.1",
"eslint": "^8.13.0",
"eslint-plugin-jest": "^26.1.4",
"jest": "^27.5.1",
"jsdoc": "^4.0.3",
"jsdoc-plugin-intersection": "^1.0.4",
"jsdoc-plugin-typescript": "^2.0.7",
"jsdoc-plugin-typescript-new": "^1.0.0",
"serve": "^14.2.4"
}
}