-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.85 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
53
{
"name": "@norviah/logger",
"version": "7.0.0",
"description": "A simple logging system.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build:src": "./node_modules/typescript/bin/tsc",
"build:docs": "npm run build:src && /bin/rm -rf ./docs; ./node_modules/typedoc/bin/typedoc --plugin typedoc-plugin-markdown src/index.ts --githubPages false",
"publish:patch": "npm run build:src && ./node_modules/standard-version/bin/cli.js --release-as patch && npm run publish",
"publish:minor": "npm run build:src && ./node_modules/standard-version/bin/cli.js --release-as minor && npm run publish",
"publish:major": "npm run build:src && ./node_modules/standard-version/bin/cli.js --release-as major && npm run publish",
"publish:version": "npm run build:src && ./node_modules/standard-version/bin/cli.js --release-as $1 && npm run publish",
"publish": "git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norviah/logger.git"
},
"keywords": [
"log",
"logging"
],
"author": "norviah",
"license": "MIT",
"bugs": {
"url": "https://github.com/norviah/logger/issues"
},
"homepage": "https://github.com/norviah/logger#readme",
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/node": "^16.11.6",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"typedoc": "^0.22.8",
"typedoc-plugin-markdown": "^3.11.3"
},
"dependencies": {
"app-root-path": "^3.0.0",
"chalk": "^4.1.2",
"spacetime": "^6.16.3",
"typescript": "^4.9.4"
}
}