-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.89 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "vue-phylogram",
"description": "Vue component for displaying phylogenetic trees",
"keywords": [
"bioinformatics",
"vue",
"d3",
"phylogeny"
],
"version": "3.4.2",
"private": false,
"license": "Apache-2.0",
"author": {
"name": "Ludovic Cottret",
"email": "ludovic.cottret@inrae.fr"
},
"contributors": [
{
"name": "Erika Sallet",
"email": "erika.sallet@inrae.fr"
},
{
"name": "Jérôme Gouzy",
"email": "jerome.gouzy@inrae.fr"
},
{
"name": "Sébastien Carrere",
"email": "sebastien.carrere@inrae.fr"
},
{
"name": "Ludovic Legrand",
"email": "ludovic.legrand@inrae.fr"
}
],
"bugs": {
"email": "ludovic.cottret@inrae.fr"
},
"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",
"deploy": "node scripts/gh-pages-deploy.js"
},
"dependencies": {
"core-js": "^3.6.4",
"d3": "^5.15.1",
"package.json": "^2.0.1",
"vue": "^2.7.10",
"vue-svg-pan-zoom": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/test-utils": "1.0.0-beta.31",
"babel-core": "^7.0.0-bridge.0",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^8.0.3",
"execa": "^5.1.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"sass": "^1.56.0",
"sass-loader": "^10.3.1",
"standard-version": "^9.3.0",
"vue-template-compiler": "^2.6.11",
"jest": "^27.1.0",
"@vue/vue2-jest": "^27.0.0-alpha.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,vue}": [
"vue-cli-service lint"
]
},
"files": [
"dist/*"
]
}