-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@hiwanz/wgs2mars",
"version": "2.0.1",
"main": "lib/wgs2mars.min.js",
"description": "a little function to transform longitude and latitude from WGS-84 To GCJ-02",
"homepage": "https://github.com/hiwanz/wgs2mars.js.git",
"author": {
"name": "hiwanz",
"email": "princeb4d@gmail.com",
"url": "https://github.com/hiwanz"
},
"repository": {
"type": "git",
"url": "https://github.com/hiwanz/wgs2mars.js.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.2.1",
"eslint": "^9.11.1",
"eslint-webpack-plugin": "^4.2.0",
"mocha": "^10.7.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "webpack serve --mode none",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "mocha"
},
"keywords": [
"WGS-84",
"GCJ-02",
"map",
"wgs2mars"
],
"license": "MIT"
}