-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.33 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
{
"name": "logstub",
"version": "2.0.0",
"description": "A basic libray to stub logging calls when an external logger is expected.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"build": "npm run lint && npm run test && npm run coverage",
"fix": "eslint --fix",
"lint": "eslint",
"coverage": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --coverage",
"pretty": "prettier **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutOfSyncStudios/logstub.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"log",
"logging",
"stub",
"mock",
"mocking",
"winston",
"bunyan",
"log4js",
"console"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutOfSyncStudios/logstub/issues"
},
"homepage": "https://github.com/OutOfSyncStudios/logstub#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"codacy-coverage": "^3.4.0",
"eslint": "^9.5.0",
"globals": "^15.6.0",
"jest": "^29.7.0",
"prettier": "^3.3.2"
}
}