-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "preact-leaflet",
"description": "A preact wrapper for the leaflet JavaScript library",
"author": "Christopher Butler",
"version": "0.1.20",
"source": "src/index.tsx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/ChristopherHButler/preact-leaflet"
},
"bugs": {
"url": "https://github.com/ChristopherHButler/preact-leaflet/issues"
},
"homepage": "https://github.com/ChristopherHButler/preact-leaflet",
"keywords": [
"leaflet",
"preact",
"maps"
],
"scripts": {
"clean": "rm -rf .parcel-cache dist dist-demo",
"demo:start": "npm run clean && npm run build && parcel demo/index.html --dist-dir dist-demo",
"watch": "parcel watch",
"build": "parcel build --no-source-maps",
"lint": "eslint .",
"release": "standard-version"
},
"peerDependencies": {
"leaflet": "^1.8.0",
"preact": "^10.7.2"
},
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/plugin-transform-react-jsx": "7.12.16",
"@babel/preset-env": "7.12.16",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "^7.16.7",
"@parcel/packager-ts": "^2.0.0-rc.0",
"@parcel/transformer-image": "^2.0.0-rc.0",
"@parcel/transformer-typescript-types": "^2.0.0-rc.0",
"@types/leaflet": "^1.7.10",
"babel-plugin-istanbul": "6.0.0",
"babelify": "10.0.0",
"browserify": "17.0.0",
"eslint": "7.20.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"leaflet": "^1.8.0",
"parcel": "^2.0.0-rc.0",
"preact": "^10.7.2",
"standard-version": "9.1.0",
"typescript": "^4.6.3",
"watchify": "3.11.1"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}