This repository has been archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "vue-lineup",
"description": "LineUp is an interactive technique designed to create, visualize and explore rankings of items based on a set of heterogeneous attributes.",
"homepage": "https://github.com/lineupjs/vue-lineup",
"version": "4.0.0",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
"url": "https://www.sgratzl.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lineupjs/vue-lineup/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/lineupjs/vue-lineup.git"
},
"main": "./dist/vue-lineup.umd.js",
"files": [
"dist",
"src"
],
"scripts": {
"clean": "rimraf build dist",
"start": "vue-cli-service serve",
"build:dev": "vue-cli-service build --mode development --target lib src/index.ts",
"build:prod": "vue-cli-service build --target lib src/index.ts",
"lint": "vue-cli-service lint",
"prebuild": "npm run clean && npm test",
"build": "npm run build:prod",
"test": "echo 'no tests'",
"posttest": "npm run lint",
"prepublishOnly": "npm run build:prod",
"release:major": "release-it major",
"release:minor": "release-it minor",
"release:patch": "release-it patch",
"release:pre": "release-it --preRelease=alpha --npm.tag=next"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-typescript": "^3.11.0",
"@vue/cli-service": "^3.11.0",
"release-it": "^12.3.6",
"rimraf": "^3.0.0",
"typescript": "^3.6.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"lineupjs": "~4.0.0",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}