-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 3.28 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"publisher": "swallow",
"name": "geojson-io-for-vscode",
"displayName": "GeoJSON.IO for VSCode",
"description": "Create, Edit and Preview GeoJSON Data In VSCode",
"version": "0.5.3",
"engines": {
"vscode": "^1.63.0"
},
"icon": "assets/icon.png",
"repository": "https://github.com/re0x2a/geojson.io-for-vscode.git",
"homepage": "https://github.com/re0x2a/geojson.io-for-vscode.git",
"categories": [
"Other",
"Data Science",
"Visualization"
],
"activationEvents": [
"onCommand:geojson-io-for-vscode.viewOnMap"
],
"type": "commonjs",
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "geojson-io-for-vscode.viewOnMap",
"title": "View On Map"
}
],
"menus": {
"editor/context": [
{
"when": "editorFocus && resourceExtname== '.json'",
"command": "geojson-io-for-vscode.viewOnMap",
"group": "navigation"
},
{
"when": "editorFocus && resourceExtname== '.txt'",
"command": "geojson-io-for-vscode.viewOnMap",
"group": "navigation"
},
{
"when": "editorFocus && resourceExtname== '.geojson'",
"command": "geojson-io-for-vscode.viewOnMap",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "yarn compile:extension && yarn compile:view",
"compile:extension": "tsc -p ./",
"compile:view": "webpack --mode production",
"watch": "npm-run-all -p watch:*",
"watch:extension": "tsc -watch -p ./",
"watch:view": "webpack --watch --mode development",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"format": "prettier -write .",
"test": "node ./out/test/runTest.js",
"release": "standard-version"
},
"devDependencies": {
"@types/esri-leaflet": "^2.1.9",
"@types/geojson": "^7946.0.8",
"@types/glob": "^7.2.0",
"@types/leaflet": "^1.7.9",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.18",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/test-electron": "^2.0.3",
"commitizen": "^4.2.4",
"css-loader": "^6.5.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-config-prettier": "^8.5.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass-loader": "^12.6.0",
"standard-version": "^9.3.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.13.0",
"@turf/area": "^6.5.0",
"@turf/bbox": "^6.5.0",
"@turf/center": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/length": "^6.5.0",
"ajv": "^8.11.0",
"esri-leaflet": "^3.0.8",
"esri-leaflet-vector": "^3.1.2",
"leaflet": "^1.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}