-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
75 lines (75 loc) · 1.73 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
{
"name": "vue-money-format",
"version": "1.2.4",
"private": false,
"main": "dist/money-format.umd.js",
"module": "dist/money-format.esm.js",
"unpkg": "dist/money-format.min.js",
"browser": {
"./sfc": "src/money-format.vue"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egomolka/vue-money-format.git"
},
"scripts": {
"build": "npm run build:umd & npm run build:es & npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/money-format.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/money-format.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/money-format.min.js"
},
"author": "Ed Gomolka",
"license": "MIT",
"keywords": [
"vue",
"vuejs",
"money",
"currency",
"formatting",
"format",
"i18n",
"eur",
"usd",
"vue-money-format",
"ruby",
"rails"
],
"homepage": "https://github.com/egomolka/vue-money-format",
"bugs": {
"url": "https://github.com/egomolka/vue-money-format/issues"
},
"dependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"rollup": "^2.6.1",
"rollup-plugin-vue": "^5.1.6",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}