-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.06 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": "chrt",
"version": "1.0.0",
"description": "CLI chart tool",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"test:report": "nyc mocha --reporter mocha-multi-reporters --reporter-options configFile=test/reporter-config.json",
"lint": "standard",
"lint:fix": "standard --fix"
},
"author": "charles@rabidaudio.com",
"license": "MIT",
"engines": {
"node": ">=14.17.2"
},
"bin": {
"chrt": "./index.js"
},
"dependencies": {
"asciichart": "^1.5.25",
"csv-parse": "^4.16.3",
"split2": "^3.2.2",
"yargs": "^17.1.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.1",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.5.1",
"nyc": "^15.1.0",
"standard": "^16.0.3"
},
"mocha": {
"reporter": "dot",
"ui": "bdd",
"recursive": true,
"exit": true
},
"nyc": {
"reporter": [
"text",
"text-summary"
]
},
"standard": {
"env": [
"commonjs",
"node",
"mocha"
]
}
}