-
Notifications
You must be signed in to change notification settings - Fork 284
/
package.json
94 lines (94 loc) · 2.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "leaflet-distortableimage",
"version": "0.21.9",
"description": "Leaflet plugin enabling image overlays to be distorted, stretched, and warped (built for Public Lab's MapKnitter: http://publiclab.org).",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"setup": "npm i && npm run build",
"watch:dev": "webpack --watch",
"serve:dev": "cross-env NODE_ENV=development webpack-dev-server",
"test": "grunt test",
"watch:test": "grunt karma:development:start && grunt watch",
"build": "cross-env NODE_ENV=production grunt build",
"linter": "grunt eslint"
},
"browserslist": "> 0.2%, IE 9, last 2 versions",
"main": "dist/leaflet.distortableimage.js",
"repository": {
"type": "git",
"url": "https://github.com/publiclab/Leaflet.DistortableImage.git"
},
"keywords": [
"leaflet",
"mapknitter",
"rubbersheeting",
"maps"
],
"directories": {
"examples": "./examples",
"distribution": "./dist",
"source": "./src",
"tests": "./test"
},
"author": "Anish Shah, Jeff Warren, Justin Manley, Sasha Boginsky, Pranshu Srivastava",
"license": "MIT",
"bugs": {
"url": "https://github.com/publiclab/Leaflet.DistortableImage/issues"
},
"homepage": "https://github.com/publiclab/Leaflet.DistortableImage",
"dependencies": {
"exif-js": "^2.3.0",
"glfx": "0.0.4",
"leaflet-google-places-autocomplete": "^0.0.9",
"leaflet-toolbar": "0.4.0-alpha.2",
"webgl-distort": "0.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"acorn": "^8.7.1",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.2",
"eslint": "^8.16.0",
"eslint-config-google": "^0.14.0",
"glob": "^8.0.3",
"grunt": "^1.1.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-karma": "^4.0.0",
"grunt-svg-sprite": "^1.5.0",
"grunt-svgmin": "^6.0.0",
"grunt-webpack": "^5.0.0",
"gruntify-eslint": "^5.0.0",
"husky": "^8.0.1",
"karma": "^6.3.14",
"karma-babel-preprocessor": "^8.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"leaflet": "1.x",
"matchdep": "^2.0.0",
"mocha": "^10.0.0",
"sinon": "^14.0.0",
"uglify-js": "^3.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0",
"webpack-merge-and-include-globally": "^2.1.24"
},
"peerDependencies": {
"leaflet": "1.x"
},
"husky": {
"hooks": {
"pre-commit": "npm run linter && npm run build && git add dist/leaflet.distortableimage.js"
}
}
}