-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
86 lines (86 loc) · 2.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sitemapper",
"version": "3.2.15",
"description": "Parser for XML Sitemaps to be used with Robots.txt and web crawlers",
"keywords": [
"parse",
"sitemap",
"xml",
"robots.txt",
"sitemaps",
"crawlers",
"webcrawler"
],
"homepage": "http://github.com/seantomburke/sitemapper",
"tonicExampleFilename": "example.js",
"bugs": {
"url": "http://github.com/seantomburke/sitemapper/issues"
},
"license": "MIT",
"files": [
"lib",
"sitemapper.d.ts"
],
"main": "./lib/assets/sitemapper.js",
"types": "./sitemapper.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/seantomburke/sitemapper.git"
},
"author": {
"name": "Sean Thomas Burke",
"email": "[email protected]",
"url": "http://www.seantburke.com"
},
"scripts": {
"compile": "babel src -d lib -s && tsc --project ./src/tests/",
"build": "npm run clean && npm run compile",
"start": "npm run build && node lib/examples/index.js",
"test": "npm run build && mocha ./lib/tests/*.js && npm run lint",
"lint": "eslint src",
"clean": "rm -rf lib",
"docs": "documentation build ./src/assets/sitemapper.js -f md > docs.md",
"prepack": "npm run build"
},
"maintainers": [
{
"name": "Sean Thomas Burke",
"email": "[email protected]",
"url": "http://www.seantburke.com"
}
],
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@types/async": "^3.2.4",
"@types/got": "^9.6.11",
"@types/is-url": "^1.2.28",
"@types/mocha": "^8.0.4",
"@types/xml2js": "^0.4.7",
"async": "^3.2.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-minify": "^0.5.1",
"documentation": "^14.0.2",
"eslint": "^7.14.0",
"is-url": "^1.2.4",
"mocha": "^8.2.1",
"should": "^13.2.3",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"got": "^11.8.0",
"is-gzip": "2.0.0",
"p-limit": "^3.1.0",
"xml2js": "^0.5.0"
}
}