-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 997 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
34
35
36
37
38
39
{
"name": "lookup-csv",
"version": "1.1.0",
"description": "Quickly search and lookup rows from a csv file",
"main": "index.js",
"scripts": {
"test": "tape test/*.js && eslint *.js ./*/*.js test/*.js",
"lint": "eslint *.js ./*/*.js test/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planemad/lookup-csv.git"
},
"keywords": [
"csv",
"lookup",
"hasharray"
],
"author": "Arun Ganesh",
"license": "ISC",
"bugs": {
"url": "https://github.com/planemad/lookup-csv/issues"
},
"homepage": "https://github.com/planemad/lookup-csv#readme",
"dependencies": {
"fs": "0.0.1-security",
"hasharray": "^1.1.1",
"treeize": "^2.1.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"tape": "^4.10.1"
}
}