This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "leaflet-shape-markers",
"description": "Shape markers of fixed size for point symbols",
"version": "1.0.7",
"author": "Rachel Nehmer <[email protected]>",
"bugs": {
"url": "https://github.com/Esri/Leaflet.shapeMarkers/issues"
},
"contributors": [
"Rachel Nehmer <[email protected]>",
"John Gravois <[email protected]>"
],
"dependencies": {
"leaflet": "^1.0.0"
},
"devDependencies": {
"karma": "^0.12.24",
"karma-mocha": "^0.1.0",
"karma-chai-sinon": "^0.1.3",
"karma-coverage": "^0.5.3",
"karma-mocha-reporter": "^0.2.5",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"semistandard": "^7.0.5",
"gh-release": "^2.0.0",
"mkdirp": "^0.5.1",
"rollup": "^0.25.4",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"uglify-js": "^2.4.23",
"watch": "^0.17.1"
},
"homepage": "http://github.com/Esri/Leaflet.shapeMarkers",
"module": "src/ShapeMarkers.js",
"jsnext:main": "src/ShapeMarkers.js",
"jspm": {
"registry": "npm",
"format": "es6"
},
"keywords": [
"Leaflet",
"GIS",
"Esri"
],
"license": "Apache-2.0",
"main": "dist/leaflet-shape-markers.js",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "[email protected]:Esri/Leaflet.shapeMarkers.git"
},
"scripts": {
"prepublish": "npm run build",
"prebuild": "mkdirp dist",
"build": "rollup -c scripts/debug.js && rollup -c scripts/production.js",
"release": "./scripts/release.sh",
"lint": "semistandard src/*.js",
"pretest": "npm run build",
"start": "watch 'npm run build' src & http-server -p 5000 -c-1 -o",
"test": "npm run lint && karma start"
}
}