forked from Utility-Gods/node-sitemap-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 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
{
"name": "node-sitemap-cli",
"version": "1.1.5",
"description": "A node-html-parser based sitemap generator",
"main": "dist/index.js",
"bin": {
"generate-sitemap": "./cli.js"
},
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build && npm test",
"lint": "eslint . --ext .js,.ts",
"format": "prettier --write \"**/*.{js,ts,json,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Utility-Gods/node-sitemap-cli.git"
},
"keywords": [
"sitemap-generator",
"sitemap",
"seo",
"crawler",
"node"
],
"author": "Siddharth (sid@utilitygods.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Utility-Gods/node-sitemap-cli/issues"
},
"homepage": "https://github.com/Utility-Gods/node-sitemap-cli#readme",
"dependencies": {
"node-html-parser": "^6.1.5"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"files": [
"dist",
"index.js",
"index.d.ts",
"vite-plugin.js",
"vite-plugin.d.ts"
],
"engines": {
"node": ">=14.0.0"
}
}