forked from hujiulong/gcoord
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 KB
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
{
"name": "gcoord",
"version": "0.3.2",
"description": "geographic coordinate library",
"main": "dist/gcoord.js",
"module": "dist/gcoord.esm.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c ./rollup.config.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"
},
"files": [
"src",
"dist"
],
"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",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"conventional-changelog-cli": "^2.1.1",
"enquirer": "^2.3.6",
"eslint": "^7.20.0",
"execa": "^5.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"minimist": "^1.2.5",
"prettier": "^2.2.1",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"semver": "^7.3.4",
"ts-jest": "^27.0.2",
"typescript": "^4.0.5",
"yorkie": "^2.0.0"
}
}