-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "sitemap-webpack-plugin",
"version": "1.1.1",
"description": "Webpack plugin to generate a sitemap.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.ts",
"prepare": "npm run build",
"test": "jest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"format": "prettier --write '**/*.{ts,json}'",
"lint": "eslint 'src/*.ts' 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schneidmaster/sitemap-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"sitemap",
"static"
],
"author": "Zach Schneider <zach@schneider.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/schneidmaster/sitemap-webpack-plugin/issues"
},
"files": [
"lib/",
"src/",
"LICENSE.txt",
"package.json",
"README.md"
],
"homepage": "https://github.com/schneidmaster/sitemap-webpack-plugin#readme",
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.19",
"@types/pretty-data": "^0.40.0",
"@types/rimraf": "^3.0.0",
"@types/webpack-sources": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"coveralls": "^3.0.9",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"glob": "^7.1.1",
"jest": "^26.6.1",
"prettier": "^1.19.1",
"pretty-data": "^0.40.0",
"rimraf": "^2.5.4",
"rollup": "^2.38.5",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5"
},
"dependencies": {
"schema-utils": "^3.0.0",
"sitemap": "^6.0.0",
"webpack-sources": "^1.4.3"
},
"resolutions": {
"kind-of": "^6.0.3"
}
}