forked from JaimeObregon/observatoriospublicos.es
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 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
{
"name": "observatoriospublicos.es",
"version": "1.0.0",
"description": "Observatorio de los observatorios públicos de España",
"homepage": "https://observatoriospublicos.es",
"bugs": {
"url": "https://github.com/JaimeObregon/observatoriospublicos.es/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaimeObregon/observatoriospublicos.es.git"
},
"license": "AGPL-3.0-or-later",
"author": "Jaime Gómez-Obregón",
"type": "module",
"main": "httpdocs/index.html",
"scripts": {
"serve": "bin/serve.js",
"docker:watch": "docker run --rm -it -p 8090:8080 -v \"$(pwd)/httpdocs:/app/httpdocs\" observatorios-prettier yarn serve",
"docker:validate-observatorios": "docker run --rm -v \"$(pwd)\":/work observatorios-prettier sh -c 'cd /work && /app/node_modules/.bin/prettier --check \"httpdocs/**/*.{js,json,css}\"'",
"prepare": "husky"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"husky": "^9.1.7",
"live-server": "^1.2.2",
"prettier": "^3.6.2"
}
}