-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
98 lines (98 loc) · 2.4 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
{
"name": "vue-numeric",
"version": "2.5.1",
"description": "Input field component to display currency value based on Vue.",
"author": "Kevin Ongko",
"main": "dist/vue-numeric.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinongko/vue-numeric.git"
},
"bugs": {
"url": "https://github.com/kevinongko/vue-numeric/issues"
},
"keywords": [
"component",
"currency",
"input",
"text",
"number",
"numeric",
"separator",
"vue",
"vue.js"
],
"homepage": "https://github.com/kevinongko/vue-numeric#readme",
"license": "MIT",
"dependencies": {
"accounting-js": "^1.1.1"
},
"scripts": {
"test": "cross-env BABEL_ENV=test ./node_modules/.bin/karma start test/karma.config.js",
"test:watch": "cross-env BABEL_ENV=test ./node_modules/.bin/karma start test/karma.config.js --single-run=false",
"lint": "./node_modules/.bin/eslint --ext .js,.vue src spec",
"build": "./node_modules/.bin/webpack --hide-modules -p --progress",
"report-coverage": "codecov"
},
"devDependencies": {
"avoriaz": "^4.0.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.16",
"codecov": "^3.8.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.6.0",
"eslint-plugin-vue": "^4.2.0",
"karma": "^6.3.16",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.0",
"phantomjs-prebuilt": "^2.1.15",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"vue": "^2.4.2",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5"
},
"babel": {
"presets": [
[
"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"
]
}
}