-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 975 Bytes
/
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
{
"name": "koop-provider-csv",
"version": "3.2.0",
"description": "Koop provider for CSV",
"main": "src/index.js",
"scripts": {
"test": "tape 'test/**/*.test.js'",
"start": "cross-env NODE_ENV=dev koop serve -p 8080 --debug --watch"
},
"author": "Haoliang Yu",
"license": "MIT",
"keywords": [
"koopjs",
"plugin",
"provider",
"csv"
],
"dependencies": {
"config": "^3.3.1",
"glob": "^9.3.4",
"is-url-superb": "^4.0.0",
"node-fetch": "^2.0.0",
"papaparse": "^5.3.0"
},
"devDependencies": {
"@koopjs/cli": "^0.7.0",
"cross-env": "^7.0.2",
"fetch-mock": "^9.10.7",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"proxyquire": "^2.1.3",
"tape": "^5.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
}
}