forked from seantomburke/sitemapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.96 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
{
"name": "sitemapper",
"version": "2.1.9",
"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/hawaiianchimp/sitemapper",
"tonicExampleFilename": "example.js",
"bugs": {
"url": "http://github.com/hawaiianchimp/sitemapper/issues"
},
"license": "MIT",
"files": [
"lib"
],
"main": "./lib/sitemapper.js",
"repository": {
"type": "git",
"url": "git://github.com/hawaiianchimp/sitemapper.git"
},
"author": {
"name": "Sean Thomas Burke",
"email": "[email protected]",
"url": "http://www.seantburke.com"
},
"scripts": {
"broccoli": "broccoli build lib",
"build": "npm run clean && npm run broccoli",
"start": "node lib/examples/index.js",
"test": "mocha ./lib/test.js && npm run lint",
"lint": "eslint /src",
"clean": "rm -rf lib",
"docs": "documentation -g -o docs.md -f md src/assets/sitemapper.js"
},
"maintainers": [
{
"name": "Sean Thomas Burke",
"email": "[email protected]",
"url": "http://www.seantburke.com"
}
],
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"async": "^2.0.1",
"babel-cli": "^6.11.4",
"babel-polyfill": "^6.13.0",
"broccoli-babel-transpiler": "^5.5.1",
"broccoli-concat": "^2.3.4",
"broccoli-funnel": "^1.0.5",
"broccoli-merge-trees": "^1.1.3",
"documentation": "^3.0.4",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"is-url": "^1.2.2",
"mocha": "^3.0.1",
"should": "^10.0.0"
},
"dependencies": {
"broccoli": "^0.16.9",
"broccoli-cli": "^1.0.0",
"es6-promise": "^3.2.1",
"request": "^2.74.0",
"request-promise": "^4.1.0",
"xml2js-es6-promise": "^1.0.3"
}
}