-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "articleify",
"version": "1.3.0",
"description": "the static site generation tool used by polyglotweekly.com",
"main": "./lib/index.js",
"bin": "./bin/articleify.js",
"scripts": {
"test": "mocha --check-leaks --ui exports --require patched-blanket -R mocoverage"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": [
"node_modules",
"test"
],
"output-reporter": "spec"
}
},
"repository": {
"type": "git",
"url": "http://github.com/polyglotweekly/articleify.git"
},
"keywords": [
"markdown",
"jekyll",
"blog",
"blogging",
"articles"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"devDependencies": {
"blanket": "^1.1.6",
"chai": "^2.1.0",
"mocha": "^2.2.1",
"mocoverage": "^1.0.0",
"patched-blanket": "^1.0.1",
"rimraf": "^2.2.8"
},
"dependencies": {
"bluebird": "^2.9.13",
"chalk": "^1.0.0",
"cheerio": "^0.18.0",
"handlebars": "^3.0.0",
"inquirer": "^0.8.0",
"lodash": "^3.3.1",
"marky-markdown": "^5.2.0",
"mkdirp": "^0.5.0",
"moment": "^2.9.0",
"pretty-filename": "^0.1.0",
"recursive-readdir": "^1.2.1",
"rss": "^1.1.1",
"yargs": "^3.4.5"
}
}