-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.87 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.87 KB
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
{
"name": "scribbles",
"version": "1.7.0",
"description": "Scribbles is a log and tracing lib for Node",
"files": [
"dist/",
"index.d.ts",
"LICENSE"
],
"main": "dist/scribbles.js",
"scripts": {
"prepare": "rm -rf .git/hooks/* && cp -R .hooks/* .git/hooks/ && chmod +x .git/hooks/* .git/hooks/pre-commit.d/* 2>/dev/null || true",
"test": "jest --no-cache",
"test:watch": "jest --watch --runInBand",
"test:cover": "jest --coverage --no-cache --detectOpenHandles",
"test:subprocess": "nyc --silent node __tests__/subprocess/run-all.js",
"test:full-coverage": "jest --coverage --no-cache && npm run test:subprocess && nyc report --reporter=text",
"release": "bash scripts/publish.sh",
"prepublishOnly": "npx esbuild index.js --bundle --minify --sourcemap --platform=node --external:../../package.json --outfile=dist/scribbles.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemeasandwich/scribbles.git"
},
"author": "Brian Shannon (https://github.com/codemeasandwich)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemeasandwich/scribbles/issues"
},
"keywords": [
"trace",
"trace context",
"logging",
"nodejs"
],
"homepage": "https://github.com/codemeasandwich/scribbles#readme",
"devDependencies": {
"@ashleyw/cls-hooked": "^5.0.1",
"jest": "^29.3.1",
"moment": "^2.24.0",
"node-hook": "^1.0.0",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"string-template": "^1.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/fixtures/",
"/__tests__/subprocess/"
]
},
"nyc": {
"include": [
"index.js",
"src/**/*.js"
],
"exclude": [
"__tests__/**",
"dist/**"
],
"reporter": [
"text",
"lcov"
],
"report-dir": ".nyc_output"
}
}