This repository was archived by the owner on Jun 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "varie",
"version": "1.0.1",
"description": "VueJS Framework",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index",
"repository": "[email protected]:variejs/varie-framework.git",
"author": "Luke Policinski",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"camelcase": "^5.3.1",
"clone-deep": "^4.0.1",
"dashify": "^2.0.0",
"inversify": "^5.0.1",
"inversify-inject-decorators": "^3.1.0",
"reflect-metadata": "^0.1.13",
"validator": "^12.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/git": "^7.0.18",
"@types/node": "^12.12.14",
"@types/validator": "^12.0.1",
"@types/webpack-env": "^1.14.1",
"babel-jest": "^24.9.0",
"git-cz": "^3.3.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"semantic-release": "^15.13.31",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"commit": "npx git-cz",
"installPeers": "npm install vue vue-router vuex --no-save",
"release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"lib",
"src",
"stubs",
"components",
"BaseLayout.vue",
"Alerts.vue"
],
"sideEffects": [
"*.vue"
]
}