-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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
{
"name": "collectionsonline-sitemap",
"version": "0.0.1",
"description": "An AWS lambda for generating a sitemap.xml for the collections online website",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:zip",
"build:zip": "VERSION=`getversion` && zip -q -r \"dist/sitemap-v$VERSION.zip\" * -x dist/\\* coverage/\\* tmp/\\*",
"clean": "rm -rf dist/*",
"test": "semistandard && istanbul cover tape 'test/*.test.js'"
},
"author": "Science Museum Group",
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "^7.17.13",
"async": "^2.0.1",
"data2xml": "^1.2.5",
"getversion": "^0.1.1",
"mkdirp": "^0.5.1",
"s3": "https://github.com/andrewrk/node-s3-client#0ed018699843a2d3cc1cb37399ead1f76a72576d",
"slug": "^0.9.1"
},
"devDependencies": {
"faker": "^3.1.0",
"istanbul": "^0.4.4",
"semistandard": "^8.0.0",
"sinon": "^1.17.5",
"tape": "^4.6.0",
"xml2js": "^0.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheScienceMuseum/collectionsonline-sitemap.git"
},
"bugs": {
"url": "https://github.com/TheScienceMuseum/collectionsonline-sitemap/issues"
},
"homepage": "https://github.com/TheScienceMuseum/collectionsonline-sitemap#readme"
}