-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
{
"name": "fetch-manifest",
"description": "A nifty tool for fetching metadata from W3C Web-App Manifests.",
"version": "1.2.4",
"main": "./app.js",
"repository": {
"type": "git",
"url": "git://github.com/cvan/fetch-manifest.git"
},
"bugs": {
"url": "https://github.com/cvan/fetch-manifest/issues"
},
"license": "CC0-1.0",
"homepage": "https://github.com/cvan/fetch-manifest",
"author": "Chris Van",
"engines": {
"node": "7.x"
},
"dependencies": {
"boom": "^4.3.0",
"cheerio": "^0.22.0",
"cross-env": "^3.2.4",
"es6-promise": "^4.1.0",
"hapi": "^16.1.0",
"inert": "^4.1.0",
"joi": "^10.3.1",
"recrawler-spa": "^3.0.0",
"request": "^2.81.0",
"request-promise": "^4.2.0"
},
"devDependencies": {
"nodemon": "^1.11.0"
},
"scripts": {
"start": "npm run dev",
"dev": "cross-env NODE_ENV='dev' nodemon app",
"prod": "cross-env NODE_ENV='production' node app"
},
"keywords": [
"manifest",
"manifests",
"fetch-manifest",
"fetchmanifest",
"fetch-manifests",
"fetchmanifests",
"fetch",
"manifest-parser",
"manifestparser",
"manifest-parse",
"manifestparse",
"parse-manifest",
"parsemanifest",
"parse-manifests",
"parsemanifests",
"webapp",
"webapps",
"web app",
"web apps",
"webapp manifest",
"web app manifest",
"web-app manifest",
"web-app-manifest",
"webapp manifests",
"web app manifests",
"web-app manifests",
"web-app-manifests"
]
}