UNPKG

1.07 kBJSONView Raw
1{
2 "name": "hexo-cli",
3 "version": "0.1.9",
4 "description": "Command line interface for Hexo",
5 "main": "lib/index",
6 "bin": {
7 "hexo": "./bin/hexo"
8 },
9 "scripts": {
10 "eslint": "eslint .",
11 "jscs": "jscs .",
12 "test": "mocha test/index.js",
13 "test-cov": "istanbul cover --print both _mocha -- test/index.js"
14 },
15 "directories": {
16 "lib": "./lib",
17 "bin": "./bin"
18 },
19 "engines": {
20 "node": ">= 0.10.0"
21 },
22 "repository": "hexojs/hexo-cli",
23 "homepage": "http://hexo.io/",
24 "keywords": [
25 "website",
26 "blog",
27 "cms",
28 "framework",
29 "hexo",
30 "cli"
31 ],
32 "author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
33 "license": "MIT",
34 "dependencies": {
35 "abbrev": "^1.0.7",
36 "bluebird": "^3.0.5",
37 "chalk": "^1.1.1",
38 "hexo-fs": "^0.1.4",
39 "minimist": "^1.2.0",
40 "tildify": "^1.1.2"
41 },
42 "devDependencies": {
43 "chai": "^3.4.0",
44 "eslint": "^1.8.0",
45 "hexo-renderer-marked": "^0.2.5",
46 "istanbul": "^0.4.0",
47 "jscs": "^2.5.0",
48 "mocha": "^2.3.3",
49 "sinon": "^1.17.2"
50 }
51}