-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.64 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vue-phylogram",
"description": "Vue component for displaying phylogenetic trees",
"keywords": [
"bioinformatics",
"vue",
"d3",
"phylogeny"
],
"version": "3.1.2",
"private": false,
"license": "Apache-2.0",
"author": {
"name": "Ludovic Cottret",
"email": "[email protected]"
},
"contributors": [
{
"name": "Erika Sallet",
"email": "[email protected]"
},
{
"name": "Jérôme Gouzy",
"email": "[email protected]"
},
{
"name": "Sébastien Carrere",
"email": "[email protected]"
},
{
"name": "Ludovic Legrand",
"email": "[email protected]"
}
],
"bugs": {
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/lipme/vue-phylogram.git"
},
"main": "./dist/vue-phylogram.common.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:unit:update": "vue-cli-service test:unit -u",
"lint": "vue-cli-service lint",
"build-npm": "vue-cli-service build --target lib --name vue-phylogram ./src/components/index.js",
"publish-npm": "npm publish --access public",
"release": "HUSKY=0 standard-version",
"release:minor": "HUSKY=0 standard-version --release-as minor",
"release:patch": "HUSKY=0 standard-version --release-as patch",
"release:major": "HUSKY=0 standard-version --release-as major",
"prepare": "husky install"
},
"dependencies": {
"core-js": "^3.6.4",
"d3": "^5.15.1",
"vue": "^2.6.11",
"vue-svg-pan-zoom": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-unit-jest": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "1.0.0-beta.31",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"commitizen": "^4.2.4",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"standard-version": "^9.3.0",
"vue-template-compiler": "^2.6.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"vue-cli-service lint"
]
},
"files": [
"dist/*"
]
}