-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 789 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 789 Bytes
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
{
"name": "augmentable-cli",
"version": "0.1.0",
"description": "CLI for working with CSV files by importing into SQLite",
"bin": {
"augmentable": "./cli/index.js",
"aug": "./cli/index.js",
"augmentable-sql": "./sql/index.js",
"aug-sql": "./sql/index.js"
},
"author": "Patrick DeVivo <patrick@augmentable.io>",
"license": "MIT",
"private": false,
"preferGlobal": true,
"dependencies": {
"caporal": "^0.9.0",
"chalk": "^2.3.1",
"cli-table2": "^0.2.0",
"console-png": "^1.2.1",
"csv-sqlite": "^0.1.1",
"fast-glob": "^2.0.4",
"inquirer": "^5.1.0",
"moment": "^2.20.1",
"numbro": "^2.0.5",
"ora": "^1.4.0"
},
"devDependencies": {
"eslint": "^4.18.2"
},
"scripts": {
"eslint": "eslint '**/*.js'"
}
}