-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"private": true,
"name": "leaflet-plugins-root",
"version": "0.6.0",
"description": "An accessibility and localization plugin for Leaflet.",
"bin": "scripts/build.mjs",
"license": "MIT",
"author": "Nick Freear",
"homepage": "https://nfreear.github.io/leaflet.plugins/",
"repository": {
"type": "git",
"url": "https://github.com/nfreear/leaflet.plugins.git"
},
"peerDependencies": {
"leaflet": "^1.0.0"
},
"scripts": {
"prepublishOnly": "npm run build && npm test && npm run version",
"dry": "npm publish --workspaces --dry-run",
"build": "npm run build:plugin && npm run copy",
"build:plugin": "node scripts/build.mjs",
"copy": "node scripts/copy.mjs",
"version": "node scripts/version.mjs",
"start": "npm run build && npx servor example",
"start:debug": "npx servor",
"fix": "semistandard --fix",
"test": "semistandard"
},
"devDependencies": {
"semistandard": "^17.0.0",
"servor": "^4.0.2"
},
"workspaces": [
"packages/*"
]
}