-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
{
"name": "csv-generator",
"version": "1.0.4",
"main": "index.js",
"repository": "https://github.com/atomicpages/csv-generator.git",
"author": "Dennis Thompson <djtthompson@gmail.com>",
"license": "MIT",
"bin": "./bin/gencsv",
"preferGlobal": true,
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"coverage": "nyc mocha --bail",
"lint": "./node_modules/.bin/eslint --max-warnings 2 **/*.js",
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json",
"e2e": ""
},
"engines": {
"node": ">= 6.10.0"
},
"dependencies": {
"chalk": "^2.0.1",
"chance": "^1.0.10",
"clear": "^0.0.1",
"cli-table": "^0.3.1",
"figlet": "^1.2.0",
"i18n": "^0.8.3",
"inquirer": "^4.0.2",
"is-plain-object": "^2.0.4",
"lodash": "^4.17.5",
"progress": "^2.0.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"chai": "^4.1.0",
"coveralls": "^3.0.0",
"eslint": "^4.3.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-promise": "^3.5.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^4.1.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha-sinon": "^2.0.0",
"mock-fs": "^4.4.1",
"mock-stdin": "^0.3.1",
"nyc": "^11.1.0",
"sinon": "^4.1.3",
"strip-ansi": "^4.0.0"
},
"nyc": {
"exclude": [
"**/vendor/**/*.js",
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**",
"**/node_modules/**"
],
"reporter": [
"text",
"html"
],
"check-coverage": true,
"per-file": true,
"lines": 90,
"statements": 90,
"branches": 90,
"functions": 80
}
}