-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 836 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 836 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
{
"name": "@lfaler/csv-to-json",
"title": "CSV-to-JSON",
"version": "1.0.4",
"description": "",
"scripts": {
"new-command": "bash ./new-command.sh",
"test": "mocha ./tests/index.js"
},
"keywords": [],
"author": "Layne Faler <lfaler>",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.10",
"ncp": "^2.0.0",
"prompt": "^1.0.0",
"shelljs": "^0.8.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.2.0"
},
"bin": {
"csvToJson": "./actions/index.js"
}
}