forked from netlify-labs/netlify-plugin-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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
{
"name": "@dots/plugin-sitemap",
"version": "0.8.1",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "ava --reset-cache",
"test": "ava -v",
"watch": "npm test -- --watch -v",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"tests/**/*.js\" \"*.js\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \"tests/**/*.js\" \"*.js\""
},
"keywords": [
"netlify",
"netlify-plugin"
],
"files": [
"index.js",
"make_sitemap.js",
"manifest.yml",
"package.json",
"package-lock.json",
"README.md"
],
"author": "netlify-labs",
"repository": "https://github.com/netlify-labs/netlify-plugin-sitemap",
"bugs": {
"url": "https://github.com/netlify-labs/netlify-plugin-sitemap/issues"
},
"license": "MIT",
"dependencies": {
"globby": "^10.0.1",
"mkdirp": "^1.0.4",
"sitemap": "^3.2.2"
},
"engines": {
"node": ">=8.12.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run format"
}
},
"devDependencies": {
"@netlify/eslint-config-node": "^2.2.2",
"ava": "^2.1.0",
"husky": "^4.3.5",
"tempy": "^0.3.0",
"xml2js": "^0.4.23"
}
}