-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "linec",
"version": "1.4.2",
"description": "line count",
"main": "index.js",
"bin": {
"linec": "./lib/index.js"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha && ./node_modules/.bin/codecov",
"start": "node ./src/index.js",
"update": "npm run build && auto-vers -t",
"build": "./node_modules/.bin/babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hua1995116/linec.git"
},
"keywords": [
"node"
],
"author": "huayifeng <qiufenghyf@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hua1995116/linec/issues"
},
"homepage": "https://github.com/hua1995116/linec#readme",
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.3.3",
"commander": "^2.20.0",
"common-comment-parser": "^0.2.1",
"ignore": "^4.0.3",
"log-symbols": "^2.2.0"
},
"devDependencies": {
"auto-vers": "^1.0.3",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0"
}
}