-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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": "imhof",
"version": "0.1.2",
"description": "Render map tiles to pdf in the browser with arbitrary resolution.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/imhofjs/imhof"
},
"scripts": {
"build": "parcel build --public-url . src/index.html",
"eclint": "eclint check . '!{coverage,dist}/**/*'",
"eslint": "eslint .",
"headless": "npm run build && node examples/headless.js",
"prepare": "npm run build",
"start": "parcel src/index.html",
"test": "jest"
},
"files": [
"/src",
"/dist"
],
"keywords": [
"map",
"tiles",
"pdf",
"browser",
"print",
"headless"
],
"author": "Roman Karavia",
"license": "MIT",
"dependencies": {
"@rz0/static-map": "^0.1.1",
"babel-polyfill": "^6.26.0",
"leaflet": "^1.3.4",
"paper-css": "^0.4.1"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"chrome-launcher": "^0.10.5",
"eclint": "^2.8.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"html-pdf-chrome": "^0.5.0",
"jest": "^23.6.0",
"parcel-bundler": "^1.10.3",
"parcel-plugin-clean-dist": "0.0.6"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/mocks/"
]
}
}