-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.14 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
{
"name": "nulllogger",
"author": "NexusTools <admin@nexustools.com>",
"contributors": [
"\"Katelyn Slater\" <kate@nexustools.com>"
],
"version": "1.0.1",
"license": "Apache-2.0",
"typings": "./index.d.ts",
"keywords": [
"NexusTools",
"abstract",
"logging",
"logger"
],
"bugs": {
"url": "https://github.com/NexusTools/node-nulllogger/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NexusTools/node-nulllogger.git"
},
"main": "index.js",
"scripts": {
"test": "mocha --bail --reporter spec --timeout 10000 test/",
"test-coverage": "nyc --reporter=lcov --reporter=text-summary npm test"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {},
"optionalDependencies": {
"cli-color": "^2.0.0",
"death": "^1.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/cli-color": "^2.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
}
}