-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "ocad2tiles",
"version": "1.3.1",
"description": "Create raster tiles from OCAD files",
"main": "src/index.js",
"scripts": {
"prepublish": "npm test",
"test": "npm run eslint",
"eslint": "eslint \"src/**/*.js\""
},
"repository": "https://github.com/perliedman/ocad2tiles.git",
"homepage": "https://github.com/perliedman/ocad2tiles",
"bin": {
"ocad2tiles": "./src/ocad2tiles.js",
"ocad2image": "./src/ocad2image.js"
},
"keywords": [
"OCAD",
"orienteering",
"tiles",
"gis"
],
"author": "Per Liedman <per@liedman.net>",
"license": "AGPL-3.0-or-later",
"dependencies": {
"cli-progress": "^3.8.2",
"commander": "^6.2.1",
"director": "^1.2.8",
"mkdirp": "^1.0.4",
"ocad-tiler": "^1.4.0",
"ocad2geojson": "^2.1.12",
"pdfkit": "^0.14.0",
"sharp": "^0.33.5",
"svg-to-pdfkit": "^0.1.8",
"xmldom": "^0.4.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}