-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "@data-fair/vue-cli-plugin-app",
"version": "0.5.1",
"description": "A vue-cli plugin to create data-fair applications",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --ignore-path .gitignore --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/vue-cli-plugin-app.git"
},
"author": "Alban Mouton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/data-fair/vue-cli-plugin-app/issues"
},
"homepage": "https://github.com/data-fair/vue-cli-plugin-app#readme",
"dependencies": {
"webpack-bundle-analyzer": "^4.5.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-vue": "^8.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"standard",
"plugin:vue/recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
}
}