-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
55
56
57
58
59
60
61
{
"name": "gitinspector-csv",
"version": "1.2.29",
"description": "Simple module to parse gitinspector XML output and output a CSV file",
"main": "./src/index.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"commit": "git-cz",
"test": "./node_modules/mocha/bin/mocha ./test/*",
"test-with-cov": "./node_modules/istanbul/lib/cli.js cover --include-all-sources --root ./src ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"lint": "./node_modules/eslint/bin/eslint.js src/*.js bin/*.js test/*.js || true",
"preversion": "npm test",
"release": "standard-version"
},
"bin": {
"gitinspector-csv": "./bin/cli.js"
},
"keywords": [
"gitinspector",
"xml",
"csv"
],
"author": {
"name": "Peter Reid",
"email": "[email protected]",
"url": "https://reidweb.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ReidWeb/GitInspector-CSV"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "2.4.1",
"commander": "^2.9.0",
"cz-conventional-changelog": "^3.0.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"chai": "^4.1.0",
"codeclimate-test-reporter": "^0.5.0",
"commitizen": "^3.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "4.0.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"rewire": "^4.0.0",
"standard-version": "^4.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}