forked from kevinongko/vue-numeric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.46 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
91
92
93
94
95
96
97
98
99
100
{
"name": "vue-numeric",
"version": "2.3.0",
"description": "Input field component to display currency value based on Vue.",
"author": "Kevin Ongko",
"scripts": {
"build": "./node_modules/.bin/webpack --progress",
"lint": "./node_modules/.bin/eslint --ext .js,.vue src spec",
"report-coverage": "codecov",
"test": "cross-env BABEL_ENV=test ./node_modules/karma/bin/karma start test/karma.config.js",
"test:watch": "cross-env BABEL_ENV=test ./node_modules/karma/bin/karma start test/karma.config.js --single-run=false"
},
"main": "dist/vue-numeric.min.js",
"dependencies": {
"accounting-js": "^1.1.1",
"vue": "3.0.4"
},
"devDependencies": {
"@vue/cli": "4.5.9",
"@vue/compiler-sfc": "3.0.4",
"@vue/test-utils": "^2.0.0-beta.13",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"@babel/preset-env": "^7.12.11",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-plugin-vue": "^7.4.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^8.2.1",
"puppeteer": "^5.5.0",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"vue-loader": "16.1.2",
"webpack": "4.44.2",
"webpack-cli": "^4.3.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"uglify": true,
"modules": false,
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
]
},
"bugs": {
"url": "https://github.com/kevinongko/vue-numeric/issues"
},
"homepage": "https://github.com/kevinongko/vue-numeric#readme",
"keywords": [
"component",
"currency",
"input",
"text",
"number",
"numeric",
"separator",
"vue",
"vue.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinongko/vue-numeric.git"
}
}