forked from justinkames/vuejs-logger
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.14 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
{
"name": "vuejs3-logger",
"license": "MIT",
"author": "Marc Schätz",
"description": "vuejs3-logger, provides customizable logging functionality for Vue.js3. Forked from the great vuejs-logger library (https://github.com/justinkames/vuejs-logger)",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/MarcSchaetz/vuejs3-logger.git"
},
"main": "dist/index.js",
"scripts": {
"build:save": "tsc && npm test && mkdir -p ./dist/lib/types && cp src/lib/types/index.d.ts ./dist/lib/types/index.d.ts",
"build": "tsc && mkdir -p ./dist/lib/types && cp src/lib/types/index.d.ts ./dist/lib/types/index.d.ts",
"tsc": "tsc --watch",
"test": "tsc && jest",
"upload-coverage": "codecov -t $CODECOV_TOKEN",
"publish": "npm run build && npm publish"
},
"devDependencies": {
"@types/jest": "25.1.1",
"@types/node": "13.5.3",
"chai": "4.2.0",
"codecov": "3.6.2",
"eslint": "^7.12.1",
"jest": "25.1.0",
"ts-jest": "25.1.0",
"typescript": "3.7.5"
},
"dependencies": {
"vue": "^3.0.0",
"es6-object-assign": "1.1.0"
},
"typings": "dist/lib/types/index.d.ts"
}