-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.72 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "opennames-to-neo4j",
"version": "0.1.1",
"type": "module",
"scripts": {
"start:dev": "nodemon --watch src --ext js --exec node src/index.js",
"test": "mocha",
"test:watch": "nodemon --watch src --watch test --exec mocha",
"coverage": "c8 npm run test",
"coverage:watch": "nodemon --watch src --watch test --exec npm run coverage",
"build": "babel src --out-dir dist",
"build:watch": "nodemon --watch src --ext js --exec babel src --out-dir dist"
},
"author": "davey",
"license": "MIT",
"dependencies": {
"@fast-csv/parse": "^4.3.6",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"csv-write-stream": "^2.0.0",
"extract-zip": "^2.0.1",
"fs-extra": "^9.1.0",
"md5-file": "^5.0.0",
"neo4j-driver": "^4.2.3",
"proj4": "^2.7.2"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/preset-env": "^7.13.12",
"c8": "^7.7.0",
"chai": "^4.3.4",
"cross-env": "^5.1.3",
"dotenv": "^8.2.0",
"mocha": "^8.3.2",
"nodemon": "^1.19.1"
},
"main": "dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./src/index.js"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EarthlingDavey/opennames-to-neo4j.git"
},
"bugs": {
"url": "https://github.com/EarthlingDavey/opennames-to-neo4j/issues"
},
"homepage": "https://github.com/EarthlingDavey/opennames-to-neo4j#readme",
"description": "",
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}