-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.15 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
{
"name": "@medooze/logger",
"version": "2.0.0",
"description": "Logger by Medooze",
"main": "index.js",
"scripts": {
"check": "tsc --noEmit --emitDeclarationOnly false",
"docs": "documentation build lib/Logger.js lib/*.js --shallow -o docs -f html && documentation build lib/MediaServer.js lib/*.js --shallow -o api.md -f md --markdown-toc false",
"dist": "mkdir -p dist && tar cvzf dist/medooze-logger-`node -e 'console.log(require(\"./package.json\").version)'`.tgz `([ \"$(uname)\" = 'Darwin' ] && echo \"-s |^|medooze-logger/|\") || echo \" --transform=flags=r;s|^|medooze-logger/|\"` package.json index.js index.d.ts build/types README.md lib/*",
"test": "tap tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medooze/logger-node.git"
},
"author": "Sergio Garcia Murillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/medooze/logger-node/issues"
},
"homepage": "https://github.com/medooze/logger-node#readme",
"files": [
"lib/*",
"package.json",
"index.js",
"index.d.ts",
"build/types",
"README.md"
],
"dependencies": {
"tap": "^21.0.1"
}
}