forked from jdz321/spy-log
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.94 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.94 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "spy-log",
"version": "0.1.0",
"description": "A simple log tool in bowsers",
"author": {
"name": "spark",
"email": "jdz321@163.com",
"url": "https://github.com/jdz321"
},
"keywords": [
"log",
"spy",
"group"
],
"engines": {
"node": ">=12.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/@(*.spec|*.test)*",
"!dist/**/__test__",
"module-files"
],
"homepage": "https://github.com/jdz321/spy-log",
"bugs": "https://github.com/jdz321/spy-log/issues",
"repository": "jdz321/spy-log",
"license": "ISC",
"scripts": {
"execute": "ts-node --transpile-only --compiler-options '{ \"module\": \"commonjs\" }'",
"watch": "ts-node-dev --no-notify --respawn --transpile-only --compiler-options '{ \"module\": \"commonjs\" }'",
"lint": "eslint --ignore-path .gitignore --cache --ext js,jsx,ts,tsx,vue --fix .",
"format": "prettier . --write",
"release": "npm run readme && git pull && git add -A && git commit && git push --follow-tags",
"test": "jest --coverage",
"readme": "node module-files/scripts/tsmod.js readme",
"build": "tsc",
"docs:build": "npm run tsmod vuepress-api && NODE_ENV=production vuepress build docs",
"docs:dev": "npm run tsmod vuepress-api && vuepress dev docs",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"tsmod": "node module-files/scripts/tsmod.js",
"yo:update": "yo tsmod:uninstall --no-install --force && yo 'tsmod' '--vuepress' '--typedoc' '--license' 'MIT'"
},
"shields": [
"commitizen",
"conventionalcommits"
],
"vuepress": {
"google-analytics-id": ""
},
"devDependencies": {
"walkdir": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"commitizen": "^4.2.3",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"husky": "^5.1.3",
"@ozum/pinst": "^2.1.4",
"is-ci": "^3.0.0",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"lint-staged": "^10.5.4",
"readmeasy": "^0.2.7",
"concat-md": "^0.3.5",
"typedoc": "^0.20.30",
"typedoc-neo-theme": "^1.1.0",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-markdown": "^3.6.0",
"typedoc-plugin-param-names": "^2.0.0",
"@types/node": "^14.14.33",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3",
"@vuepress/plugin-active-header-links": "^1.8.2",
"@vuepress/plugin-google-analytics": "^1.8.2",
"@vuepress/plugin-pwa": "^1.8.2",
"npm-run-all": "^4.1.5",
"vuepress": "^1.8.2",
"vuepress-bar": "^0.3.6",
"vuepress-plugin-mermaidjs": "^1.8.1"
}
}