-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "sheet-cli",
"version": "0.3.6",
"description": "A simple excel spreadsheet and csv viewer",
"main": "index.js",
"bin": {
"sheet-cli": "index.js"
},
"scripts": {
"test": "mocha test/*.test.js",
"format": "prettier --write '**/*.js'",
"lint": "prettier --list-different '**/*.js' && eslint '**/*.js'",
"fix": "eslint --fix '**/*.js'"
},
"author": "Jonathan Boudreau <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/AGhost-7/sheet-cli.git"
},
"bugs": {
"url": "https://github.com/AGhost-7/sheet-cli/issues"
},
"homepage": "https://github.com/AGhost-7/sheet-cli#readme",
"license": "MIT",
"keywords": [
"CSV",
"Excel",
"XLSX",
"Viewer",
"Document",
"Command",
"Line"
],
"dependencies": {
"blessed": "^0.1.81",
"csv-parse": "^2.5.0",
"xlsx": "^0.8.2"
},
"devDependencies": {
"eslint": "^5.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^3.2.0",
"power-assert": "^1.4.2",
"prettier": "^1.13.6"
}
}