-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.24 KB
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
{
"name": "@lbdudc/mini-lps",
"author": "Álex Cortiñas",
"homepage": "https://github.com/lbdudc/mini-lps#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lbdudc/mini-lps.git"
},
"version": "0.2.7",
"description": "Mini-LPS is a mini version of a SPL with features for the management and visualization of geospatial data.",
"browserslist": [
"> 1%",
"last 2 versions"
],
"dependencies": {
"spl-js-engine": "^3.1.3"
},
"devDependencies": {
"archiver": "^3.1.1",
"babel-eslint": "^10.1.0",
"del-cli": "^3.0.1",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^7.9.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5"
},
"eslintConfig": {
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier"
],
"globals": {
"L": false,
"MV": false
},
"parserOptions": {
"parser": "babel-eslint"
},
"root": true,
"rules": {
"no-console": 0,
"vue/component-name-in-template-casing": [
"error",
"kebab-case",
{
"registeredComponentsOnly": false
}
]
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"license": "MIT",
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
],
"*.{css,html,json}": [
"prettier --write",
"git add"
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"scripts": {
"check-products": "bash ./scripts/check-products.sh",
"debug": "npm-run-all -p -r buildwatch nodemon",
"predebug": "npm run platform",
"nodemon": "nodemon src/server/init.js",
"buildwatch": "vue-cli-service build --watch --no-clean --mode development",
"build": "vue-cli-service build",
"postbuild": "npm run platform",
"lint": "vue-cli-service lint",
"lint:product": "vue-cli-service lint output/client/",
"prettier:product": "prettier --write \"output/client/\"",
"clean": "node scripts/generate.js clean",
"generate": "node scripts/generate.js generate",
"platform": "node scripts/platform.js",
"update": "node scripts/generate.js update"
}
}