-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 KB
/
package.json
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
{
"author": {
"email": "[email protected]",
"name": "Yamagishi Kazutoshi",
"url": "https://ykzts.com/"
},
"description": "Generator of Sitemaps using web standard technology for operation in Edge Computing.",
"devDependencies": {
"@jest/globals": "^29.4.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"turbo": "^1.8.2",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=16.5.0"
},
"files": [
"src/index.d.ts",
"src/index.js"
],
"homepage": "https://github.com/ykzts/edge-sitemap#readme",
"keywords": [
"sitemap",
"edge computing",
"web standard"
],
"license": "MIT",
"main": "./src/index.js",
"name": "edge-sitemap",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/ykzts/edge-sitemap.git"
},
"scripts": {
"build": "tsc",
"format": "prettier -w .",
"lint": "eslint src",
"test": "NODE_OPTIONS=--experimental-vm-modules jest src"
},
"type": "module",
"types": "./src/index.d.ts",
"version": "1.1.1"
}