forked from glennjones/microformat-node
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.56 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
{
"author": "Glenn Jones",
"name": "microformat-node",
"description": "A microformat parser for node.js",
"version": "2.0.3",
"license": "MIT",
"keywords": [
"parser",
"microfomats",
"hadr",
"hcard",
"hentry",
"hevent",
"hgeo",
"hnews",
"horg",
"hproduct",
"hrecipe",
"hresume",
"hreview-aggregate",
"hreview"
],
"repository": {
"type": "git",
"url": "git://github.com/glennjones/microformat-node.git"
},
"main": "index",
"dependencies": {
"bluebird": "3.5.x",
"cheerio": "0.22.x",
"ent": "^2.2.0",
"microformat-shiv": "^2.0.0"
},
"devDependencies": {
"blipp": "^2.3.0",
"boom": "^4.2.0",
"chai": "3.0.x",
"coveralls": "2.11.x",
"dotenv": "^2.0.0",
"download-github-repo": "0.1.x",
"fs-extra": "0.19.x",
"good": "^7.0.2",
"good-console": "^6.3.1",
"good-squeeze": "^5.0.0",
"grunt": "0.4.x",
"grunt-contrib-concat": "0.5.x",
"grunt-contrib-copy": "0.8.x",
"grunt-contrib-jshint": "0.11.x",
"grunt-contrib-watch": "0.6.x",
"handlebars": "4.0.x",
"hapi": "^16.1.0",
"hoek": "^4.1.0",
"inert": "^4.0.2",
"joi": "^10.0.1",
"jscoverage": "^0.6.0",
"mocha": "2.2.x",
"mocha-lcov-reporter": "0.0.x",
"request": "^2.87.0",
"vision": "4.1.1"
},
"scripts": {
"start": "node app",
"build": "node -e \"require('grunt').tasks(['default']);\"",
"test": "make test",
"coveralls": "./node_modules/.bin/mocha test -R mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js"
}
}