forked from grinat/leaflet-simple-map-screenshoter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
66
{
"name": "leaflet-simple-map-screenshoter",
"version": "0.4.0",
"description": "Leaflet plugin plugin which take screenshot of map",
"main": "dist/leaflet-simple-map-screenshoter.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/grinat/leaflet-simple-map-screenshoter.git"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test-e2e": "mocha tests/runner --timeout 60000 --recursive tests/e2e",
"test": "npm run build && npm run test-e2e",
"server": "node server.js"
},
"keywords": [
"leaflet",
"map",
"screenshot",
"image"
],
"author": "Gabdrashitov Rinat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grinat/leaflet-simple-map-screenshoter/issues"
},
"homepage": "https://github.com/grinat/leaflet-simple-map-screenshoter#readme",
"dependencies": {
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.2"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/leaflet": "^1.5.9",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-pipeline": "^0.1.0",
"babel-plugin-transform-pipeline-operator": "^7.0.0-beta.3",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.22.0",
"canvas": "^2.5.0",
"chai": "^4.2.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"express": "^4.17.1",
"ip": "^1.1.5",
"mkdirp": "^0.5.1",
"mocha": "^6.2.2",
"pixelmatch": "^4.0.2",
"puppeteer": "^2.1.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"rollup-watch": "^3.2.2",
"static-server": "^2.2.1",
"uuid": "^3.3.2"
}
}