-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "iem",
"version": "1.0.0",
"description": "If using this code causes your server to have kittens, it is your own fault.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.mjs",
"lint:fix": "eslint . --ext .js,.mjs --fix",
"format": "prettier --write \"htdocs/**/*.{js,mjs,css,html}\"",
"format:check": "prettier --check \"htdocs/**/*.{js,mjs,css,html}\"",
"type-check": "tsc --noEmit",
"dev": "npm run lint && npm run type-check",
"modernize": "echo 'Running jQuery to vanilla JS conversion checks'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akrherz/iem.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/akrherz/iem/issues"
},
"homepage": "https://github.com/akrherz/iem#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/ol": "^7.0.0",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.9.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}