-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.36 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
{
"name": "cuervo",
"version": "0.4.0",
"main": "cuervo.js",
"description": "Static site generator",
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/natedsaint/cuervo/master/LICENSE"
}
],
"engines": {
"node": "7.2.0"
},
"dependencies": {
"cryptiles": "^4.1.2",
"sshpk": "^1.13.2",
"lodash": "^4.17.5",
"hoek": "^4.2.1",
"tough-cookie": "2.3.3",
"codemirror": "^5.29.0",
"dateformat": "^2.0.0",
"eslint": "^4.7.1",
"js-yaml": "^3.10.0",
"markdown-it": "^8.3.0",
"minimist": "^1.2.0",
"mustache": "^2.3.0",
"rimraf": "^2.0.0",
"rss": "^1.2.0"
},
"scripts": {
"test": "jasmine",
"lint": "eslint '**/*.js'",
"coveralls": "istanbul cover jasmine --captureExceptions spec/cuervoSpec.js && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"bugs": "http://github.com/natedsaint/cuervo/issues",
"keywords": [
"Jekyll",
"Blog",
"Heckle",
"Cuervo"
],
"homepage": "https://github.com/natedsaint/cuervo",
"author": "Nathan St. Pierre <nathan@nathanstpierre.com>",
"repository": {
"type": "git",
"url": "https://github.com/natedsaint/cuervo.git"
},
"devDependencies": {
"coveralls": "2.13.x",
"istanbul": "0.4.x",
"jasmine": "2.5.x"
},
"bin": {
"cuervo": "./cuervo.js"
}
}