-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.86 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
{
"name": "assetgraph-plugin-sitemap",
"description": "An Assetgraph plugin that adds support for robots.txt and sitemaps",
"repository": "git://github.com/assetgraph/assetgraph-plugin-sitemap.git",
"version": "1.0.0",
"license": "BSD-3-Clause",
"maintainers": [
{
"name": "Peter Müller",
"email": "[email protected]"
}
],
"files": [
"lib",
"examples",
"test/unexpected-with-plugins.js",
"test/unexpectedAssetGraph.js"
],
"peerDependencies": {
"assetgraph": "^7.0.0"
},
"devDependencies": {
"assetgraph": "7.1.0",
"coveralls": "^3.0.2",
"docdash": "^1.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^6.0.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jsdoc": "^3.6.4",
"magicpen-prism": "3.0.2",
"mocha": "^9.0.2",
"nyc": "^14.0.0",
"offline-github-changelog": "^1.6.1",
"open": "^6.0.0",
"prettier": "~1.18.2",
"unexpected": "^11.0.0-1",
"unexpected-sinon": "^10.10.1"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha",
"ci": "npm run coverage && npm run lint",
"docs": "jsdoc -c jsdoc.json",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=text --all -- mocha --reporter dot && echo google-chrome coverage/lcov-report/index.html",
"preversion": "offline-github-changelog --next=${npm_package_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"nyc": {
"include": [
"lib/**"
]
}
}