-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
33 lines (33 loc) · 935 Bytes
/
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
{
"name": "vuejs-logger",
"license": "MIT",
"author": "Justin Kames",
"description": "vuejs-logger, provides customizable logging functionality for Vue.js.",
"version": "1.5.5",
"repository": {
"type": "git",
"url": "https://github.com/justinkames/vuejs-logger.git"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm test && 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",
"jest": "25.1.0",
"ts-jest": "25.1.0",
"typescript": "3.7.5",
"chai": "4.2.0",
"codecov": "3.7.1"
},
"dependencies": {
"vue": "2.6.11",
"es6-object-assign": "1.1.0"
},
"typings": "dist/lib/types/index.d.ts"
}