-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "thredds-catalog-crawler",
"version": "0.0.7",
"description": "A module for crawling thredds catalogs",
"type": "module",
"browser": "dist/threddsCrawler.min.js",
"main": "dist/threddsCrawlerNode.js",
"unpkg": "dist/threddsCrawler.min.js",
"jsdelivr": "dist/threddsCrawler.min.js",
"scripts": {
"build": "rollup -c",
"test": "ava --verbose"
},
"ava": {
"files": [
"./test/**/*.spec.js",
"!./test/harness/**"
]
},
"author": "Rowan Winsemius",
"repository": {
"type": "git",
"url": "http://github.com/TerriaJS/thredds-catalog-crawler"
},
"license": "MIT",
"dependencies": {
"fast-xml-parser": "^4.3.6",
"@xmldom/xmldom": "^0.8.10"
},
"devDependencies": {
"ava": "^6.1.2",
"cors-anywhere": "^0.4.4",
"eslint": "^6.6.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"rollup": "^4.18.0",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"serve": "^14.2.3",
"serve-static": "^1.15.0",
"test-listen": "^1.1.0"
}
}