-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
{
"name": "clg",
"version": "0.7.0",
"description": "Command-line goodness for static site generators and more",
"main": "index.js",
"bugs": {
"url": "https://github.com/greg-js/clg/issues",
"email": "gregory.scheerlinck@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/greg-js/clg.git"
},
"bin": {
"clg": "./bin/clg.js"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha",
"coverage": "node_modules/.bin/istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "eslint index.js lib/**/*.js bin/clg.js"
},
"keywords": [
"clg",
"metalsmith",
"hexo",
"jekyll",
"wintersmith",
"edit"
],
"author": "Gregory Scheerlinck <gregory.scheerlinck@gmail.com> (https://gregjs.com)",
"license": "MIT",
"preferGlobal": "true",
"dependencies": {
"bdd-stdin": "^0.2.0",
"chalk": "^1.1.3",
"front-matter": "^2.1.0",
"inquirer": "^1.0.3",
"minimist": "^1.2.0",
"open": "0.0.5",
"shelljs": "^0.7.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"bdd-stdin": "^0.2.0",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
}
}