-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "cqc",
"version": "0.5.1",
"description": "Code Quality Checker - Check your code quality by running one command.",
"main": "src/CodeQualityChecker/index.js",
"bin": {
"cqc": "bin/cqc.js"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && _mocha",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"quality",
"code quality",
"complexity",
"duplicate",
"sloc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xcatliu/cqc.git"
},
"author": "xcatliu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xcatliu/cqc/issues"
},
"homepage": "https://github.com/xcatliu/cqc#readme",
"dependencies": {
"babel-eslint": "^8.0.1",
"commander": "^2.11.0",
"eslint": "^4.7.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-vue": "^3.13.0",
"globby": "^6.1.0",
"jscpd": "^0.6.14",
"lodash": "^4.17.4",
"sloc": "^0.2.0",
"vue-eslint-parser": "^2.0.1-beta.1",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint-config-alloy": "^1.2.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"sinon": "^4.0.0"
}
}