This repository was archived by the owner on Sep 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.01 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.01 KB
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
{
"name": "sdleafletdraw",
"version": "1.3.0",
"description": "ES6 + Babel port of Leaflet.draw, a plugin that adds drawing and editing tools to Leaflet powered maps. (c) 2012-2017, Jacob Toye, Jon West, Smartrak, Leaflet https://github.com/Leaflet/Leaflet.draw http://leafletjs.com",
"main": "dist/index.js",
"files": [
"dist/",
"src/"
],
"dependencies": {
"leaflet": "^1.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.72.0",
"flow-remove-types": "^1.2.3",
"jest": "^22.4.3",
"jest-cli": "^22.4.3"
},
"scripts": {
"build": "babel src/es6 --out-dir dist --no-comments && cp src/es6/leaflet.draw.css dist/ && cp -R src/es6/images dist",
"test": "jest --verbose --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StratoDem/SDLeafletDraw.git"
},
"keywords": [
"leaflet"
],
"jest": {
"modulePaths": [
"/shared/vendor/modules",
"<rootDir>src/js"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"testRegex": "\\.test\\.js$",
"setupFiles": [
"<rootDir>src/js/_test-env.js"
]
},
"author": "StratoDem Analytics tech@stratodem.com",
"contributors": [
{
"name": "Michael Clawar"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/StratoDem/SDLeafletDraw/issues"
},
"homepage": "https://github.com/StratoDem/SDLeafletDraw#readme"
}