forked from Andy-0414/vue-roller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "vue-roller",
"main": "dist/vue-roller.common.js",
"types": "src/index.d.ts",
"description": "Number Rolling Counter",
"version": "1.12.4",
"private": false,
"license": "MIT",
"keywords": [
"vue",
"roller"
],
"author": {
"name": "Park JongHoon",
"email": "[email protected]",
"url": "http://andy0414.com"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --dest dist --target lib --name vue-roller --mode production ./src/index.ts",
"gitpage": "vue-cli-service build --dest docs --mode gitpage",
"upload": "npm run build && npm publish --access=public",
"deploy": "npm run gitpage & npm run upload"
},
"repository": {
"type": "git",
"url": "https://github.com/andy-0414/vue-roller/"
},
"homepage": "https://andy-0414.github.io/vue-roller/",
"bugs": {
"url": "https://github.com/Andy-0414/vue-roller/issues",
"email": "[email protected]"
},
"files": [
"dist",
"src",
"*.d.ts"
],
"dependencies": {
"core-js": "^3.6.5",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^8.4.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.0",
"@vue/cli-plugin-typescript": "^4.4.0",
"@vue/cli-service": "^4.4.0",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"typescript": "~3.9.3",
"vue-template-compiler": "^2.6.11",
"webpack-env": "^0.8.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}