-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.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": "trans97",
"version": "1.0.3",
"description": "Convert our WGS84 data to TWD97 data.",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "tsc",
"prod": "rm -r lib && tsc -p .",
"dev": "tsc -w",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yichunsung/trans97.js.git"
},
"keywords": [
"WGS84",
"TWD97",
"location",
"typescript",
"map",
"latitude",
"longitude"
],
"author": "YiChun Sung / YCSung.Studio <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yichunsung/trans97.js/issues"
},
"homepage": "https://github.com/yichunsung/trans97.js#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"jest": "^27.2.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}