-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.01 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
{
"name": "bark-logger",
"version": "1.0.0",
"description": "Simple log framework for browser and server",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"local": "tsc -w",
"test": "tsc && jest build/tests/*",
"clean": "rm -rf build/ out/",
"link": "tsc && mkdir -p out/lib && cp package.json out/ && cp -r build/src/* out/lib/ && cd out/ && npm link",
"prerelease": "rm -rf build/ out/ && tsc && mkdir -p out/lib && cp package.json out/ && cp LICENSE out/ && cp -r build/src/* out/lib/ && npm publish --tag next out/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kccarbone/bark-logger.git"
},
"author": "Kyle Carbone",
"license": "MIT",
"bugs": {
"url": "https://github.com/kccarbone/bark-logger/issues"
},
"homepage": "https://github.com/kccarbone/bark-logger#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"typescript": "^4.9.4"
}
}