-
Notifications
You must be signed in to change notification settings - Fork 384
/
package.json
82 lines (82 loc) · 2.02 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
{
"name": "gcoord",
"version": "1.0.6",
"description": "geographic coordinate library",
"main": "index.js",
"module": "dist/gcoord.esm-bundler.js",
"types": "dist/gcoord.d.ts",
"unpkg": "dist/gcoord.global.js",
"jsdelivr": "dist/gcoord.global.js",
"files": [
"src",
"dist",
"index.js"
],
"sideEffects": false,
"scripts": {
"build": "node scripts/build.js",
"lint": "eslint --ext .js,.ts, ./src",
"test": "jest && codecov",
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"format": "prettier --write \"src/**/*.ts\"",
"gpr-setup": "node scripts/gpr-setup.js"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hujiulong/gcoord.git"
},
"author": "Jiulong Hu <me@hujiulong.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hujiulong/gcoord/issues"
},
"homepage": "https://github.com/hujiulong/gcoord#readme",
"keywords": [
"map",
"coordinate",
"wgs84",
"gcj02",
"bd09"
],
"engines": {
"node": ">=16.11.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.33.7",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.48.1",
"chalk": "^4.1.2",
"codecov": "^3.8.1",
"conventional-changelog-cli": "^2.2.2",
"enquirer": "^2.3.6",
"eslint": "^8.33.0",
"execa": "^4.1.0",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"rollup": "^3.10.0",
"rollup-plugin-typescript2": "^0.34.1",
"semver": "^7.3.4",
"ts-jest": "^29.0.4",
"typescript": "^4.0.5",
"yorkie": "^2.0.0"
}
}