-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "sitemapper",
"version": "1.2.1",
"description": "Dynamic sitemap function for static websites that need indexing",
"type": "module",
"scripts": {
"start": "func start --javascript",
"start:verbose": "func start --javascript --verbose",
"test": "newman run integration-tests/func-iati-sitemapper.postman_collection.json -e integration-tests/envs/local-function-7071.postman_environment.json",
"prepare": "husky"
},
"author": "IATI",
"dependencies": {
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"redis": "^4.6.13"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.2.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": "24.x.x",
"npm": "11.x.x"
}
}