forked from angeliquekom/vue-json-to-csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "vue-json-to-csv",
"version": "1.1.11",
"description": "A Vue.js 2 component to transform and download a json in csv format",
"main": "dist/vue-json-to-csv.js",
"scripts": {
"build": "rimraf ./dist && webpack --config ./webpack.config.js",
"test": "jest"
},
"author": "Angeliki Komianou",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/iColabora/vue-json-to-csv"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.16",
"babel-core": "^6.10.4",
"babel-eslint": "^8.2.6",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"babel-runtime": "^6.9.2",
"eslint": "^5.1.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^21.2.1",
"jest-serializer-vue": "^0.2.0",
"rimraf": "^2.6.1",
"vue": "^2.2.1",
"vue-html-loader": "^1.2.3",
"vue-jest": "^1.0.0",
"vue-loader": "^11.1.4",
"vue-style-loader": "^2.0.3",
"vue-template-compiler": "^2.2.1",
"webpack": "^1.13.1",
"webpack-merge": "^4.2.2"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"@/([^\\.]*).vue$": "<rootDir>/$1.vue",
"@/([^\\.]*)$": "<rootDir>/$1.js"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
}
}