-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "leaflet-spots",
"version": "0.1.4",
"main": "dist/index.js",
"module": "dist/leaflet-spots.esm.js",
"sideEffect": false,
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/liyuanqiu/leaflet-spots"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint"
},
"peerDependencies": {
"leaflet": "^1.4.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/leaflet": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"leaflet": "^1.5.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"tsdx": "^0.8.0",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"dependencies": {}
}