-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "node-metainspector",
"description": "Npm package for web scraping purposes. You give it an URL, and it lets you easily get its title, links, images, description, keywords, meta tags",
"version": "2.0.0",
"homepage": "http://github.com/gabceb/node-metainspector",
"repository": "git://github.com/gabceb/node-metainspector.git",
"author": "Gabriel Cebrian <[email protected]> (http://about.me/gabceb)",
"main": "./index.js",
"dependencies": {
"cheerio": "^0.22.0",
"husky": "^1.3.1",
"lodash": "^4.17.11",
"request": "^2.88.0",
"uri-js": "^4.2.2"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-contrib-jshint": "^2.0.0",
"mocha": "^5.2.0",
"node-fakeweb": "^1.1.0",
"should": "^7.0.1"
},
"scripts": {
"test": "make test",
"lint": "grunt jshint"
},
"engines": {
"node": ">= 6"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/gabceb/node-metainspector/raw/master/LICENSE"
}
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
}
}