-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.23 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
{
"name": "vuejs-progress-bar",
"description": "A progress bar component for Vue.js",
"version": "1.2.8",
"author": "Lars M Hejll, [email protected] , softwarefun.no",
"license": "MIT",
"homepage": "https://github.com/larsmars/vuejs-progress-bar#readme",
"private": false,
"main": "./dist/ProgressBar.common.js",
"browser": "dist/ProgressBar.umd.js",
"scripts": {
"serve": "vue-cli-service serve ./src/main.js",
"build": "vue-cli-service build --target lib --name ProgressBar src/components/index.js",
"version": "npm run build && git add -A",
"postversion": "git push -u --follow-tags origin master && npm publish"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.4",
"@vue/cli-service": "^5.0.4",
"node-sass": "7.0.1",
"sass-loader": "^13.0.0",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/larsmars/vuejs-progress-bar"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"keywords": [
"vuejs",
"vue.js",
"progress",
"progressbar",
"progress-bar"
]
}