-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "about-cli",
"version": "0.0.1",
"description": "About and Blog page generator for team and individual",
"main": "index.js",
"bin": "./bin/about",
"scripts": {
"lint": "eslint .",
"ft": "mocha test/**/*-spec.js",
"test": "npm run lint && mocha test/**/*-spec.js",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/**/*-spec.js -- -R spec && istanbul check-coverage",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha test/**/*-spec.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tongquhq/about.git"
},
"keywords": [
"generator",
"about",
"blog"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tongquhq/about/issues"
},
"homepage": "https://github.com/tongquhq/about#readme",
"dependencies": {
"chalk": "^1.1.3",
"dustjs-helpers": "^1.7.3",
"dustjs-linkedin": "^2.7.3",
"js-yaml": "^3.6.1",
"lodash": "^4.15.0",
"minimist": "^1.2.0",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"istanbul": "0.4.5",
"mocha": "3.0.x",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "2.0.0-pre.2"
}
}