forked from LinusBorg/portal-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.23 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "portal-vue",
"version": "1.4.0-beta.1",
"description": "A Vue component to render elements outside of a component's template, elsewhere in the DOM",
"main": "dist/portal-vue.js",
"files": [
"dist/portal-vue.js",
"dist/portal-vue.min.js",
"dist/portal-vue.js.map",
"src"
],
"author": "Thorsten <[email protected]>",
"license": "MIT",
"repository": "[email protected]:LinusBorg/portal-vue.git",
"scripts": {
"lint": "eslint src/",
"lint:test": "eslint test/",
"build": "npm run lint && cross-env NODE_ENV=production rollup -c build/rollup.conf.prod.js && uglifyjs dist/portal-vue.js -c -m > dist/portal-vue.min.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --watch --config build/webpack.conf.js --inline --hot",
"prod": "NODE_ENV=production webpack-dev-server --watch --config build/webpack.conf.js --inline --hot",
"docs:dev": "docute ./docs --watch",
"docs:deploy": "gh-pages -d docs",
"test": "jest --config test/unit/jest.conf.js --coverage",
"test:watch": "jest --config test/unit/jest.conf.js --watch"
},
"eslintConfig": {
"parserOptions": {
"parser": "babel-eslint"
},
"env": {
"browser": true
},
"extends": [
"plugin:vue/essential"
],
"plugins": [
"vue"
],
"rules": {
"vue/jsx-uses-vars": 2,
"comma-dangle": [
"error",
"always-multiline"
]
}
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"stage-3"
],
"plugins": [
"transform-vue-jsx"
],
"comments": true,
"env": {
"jest": true,
"test": {
"presets": [
"es2015",
"stage-3"
]
}
}
},
"devDependencies": {
"@vue/test-utils": "1.0.0-beta.17",
"babel": "^6.5.2",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^23.4.0",
"babel-loader": "^7.1.5",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-vue-jsx": "^3.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.1.2",
"css-loader": "^0.28.7",
"docute": "^3.4.9",
"docute-cli": "^0.6.0",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-vue": "^4.2.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"gh-pages": "^1.1.0",
"jest": "^23.4.1",
"jest-serializer-vue": "^0.3.0",
"node-sass": "^4.9.3",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"testdouble-chai": "^0.5.0",
"vue": "^2.5.16",
"vue-jest": "^2.6.0",
"vue-loader": "^14.2.3",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0",
"webpack-merge": "^4.1.1"
},
"dependencies": {}
}