-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 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
{
"name": "google-maps-documentation",
"version": "1.1.0",
"description": "In sync, versioned copy of Google Maps API documentation",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "rm -rf html/*.md ",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn clean && yarn crawl && yarn push_master ",
"crawl": "DEBUG=gmd:* node index.js --crawl",
"gh_pages": "DEBUG=gmd:* NODE_DEBUG=gh-pages node index.js --gh_pages",
"push_master": "git checkout master && rm -rf docs/*.md && cp html/*.md docs/ && yarn add_script_to_docs && yarn commit_master && git checkout develop",
"dry": "yarn clean && DEBUG=gmd:* node index.js --dry_run --crawl",
"add_script_to_docs": "for f in ./html/*.md; do echo '<script src=\"replace_links.js\"></script>' >> \"$f\" ; done",
"commit_master": "git checkout develop docs/index.md && git checkout develop docs/README.md && yarn commit_message && git push -f",
"commit_message": "git add --all && git commit -am \"docs for `git log --format=%B -n 1 develop | head -1`\" || true ",
"to_markdown": "DEBUG=gmd:* node lib/html2md.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HuasoFoundries/google-maps-documentation.git"
},
"keywords": [
"google",
"maps",
"documentation"
],
"author": "amenadiel@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/HuasoFoundries/google-maps-documentation/issues"
},
"homepage": "https://github.com/HuasoFoundries/google-maps-documentation#readme",
"dependencies": {
"bluebird": "^3.7.2",
"chalk": "^3.0.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"exec-sh": "^0.3.0",
"find": "^0.3.0",
"gh-pages": "^2.2.0",
"js-beautify": "^1.10.3",
"jsdom": "^16.2.1",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"progress": "^2.0.3",
"puppeteer": "^2.1.1",
"showdown": "^1.9.1",
"turndown": "^5.0.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cheerio": "^1.0.0-rc.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"node-fetch": "^2.6.1",
"prettier": "^1.19.1"
}
}