forked from mazipan/vue-currency-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vue-currency-filter",
"description": "🍒 Lightweight vue currency filter based on accounting.js",
"version": "3.4.2",
"license": "MIT",
"author": "Irfan Maulana (https://github.com/mazipan/)",
"homepage": "https://mazipan.github.io/vue-currency-filter/",
"main": "dist/VueCurrencyFilter.min.js",
"module": "dist/VueCurrencyFilter.min.js",
"unpkg": "dist/VueCurrencyFilter.min.js",
"jsdelivr": "dist/VueCurrencyFilter.min.js",
"files": [
"dist",
"nuxt",
"accounting.js",
"utils.js",
"VueCurrencyFilter.js"
],
"keywords": [
"vue 2 currency",
"vue currency",
"vue currency filter",
"vue filter"
],
"repository": {
"type": "git",
"url": "https://github.com/mazipan/vue-currency-filter.git"
},
"bugs": {
"url": "https://github.com/mazipan/vue-currency-filter/issues"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --color --open --config webpack.config.demo.js",
"build:demo": "rimraf dist-demo && cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.config.demo.js",
"build:lib": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.js",
"build": "npm run build:demo && npm run build:lib",
"publish-demo": "node ./publish-demo.js",
"test": "./node_modules/.bin/jest --coverage",
"dist": "npm run build-demo && npm run build-lib && npm run publish-demo",
"lint": "eslint --ext .js,.vue --ignore-path .eslintignore .",
"lint-fix": "eslint --ext .js,.vue --ignore-path .eslintignore . --fix"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@vue/test-utils": "^1.0.0-beta.29",
"autoprefixer": "^9.5.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "24.7.1",
"babel-loader": "^8.0.5",
"bulma-dracula": "^1.0.3",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"gh-pages": "2.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-google-adsense": "^1.5.1",
"vue-highlightjs": "1.3.3",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-script2": "^2.0.3",
"vue-style-loader": "4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-serve": "^3.1.0"
},
"dependencies": {
"accounting": "0.4.1"
}
}