-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
54
55
56
57
{
"name": "@zozo/common",
"version": "0.0.1",
"description": "zozo common function",
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"scripts": {
"install": "npm run build",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:lint": "eslint src --ext .ts --fix",
"watch:build": "tsc -p tsconfig.json -w",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --out dist/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --json dist/docs/typedoc.json"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"chalk": "4.1.2",
"nest-winston": "1.6.2",
"npm-run-all": "4.1.5",
"winston": "3.7.2",
"winston-daily-rotate-file": "4.6.1"
},
"devDependencies": {
"@ava/typescript": "3.0.1",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/node": "17.0.32",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "8.15.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "4.2.1",
"eslint-plugin-import": "2.26.0",
"open-cli": "7.0.1",
"ts-node": "10.7.0",
"typedoc": "0.22.15",
"typescript": "4.6.4"
},
"files": [
"dist/main",
"dist/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md",
"src",
"tsconfig.json",
"tsconfig.module.json"
]
}