-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 1.92 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
{
"name": "@watergis/terrain-rgb",
"version": "1.2.0",
"description": "This module is to get elevation from terrain RGB tilesets by longitude and latitude.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "es6/index.js",
"files": [
"dist",
"es6"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"test": "jest",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project . --module commonjs --outDir ./dist",
"build:esm": "tsc --project . --module es2015 --outDir ./es6",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/terrain-rgb.git"
},
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/terrain-rgb/issues"
},
"homepage": "https://github.com/watergis/terrain-rgb#readme",
"devDependencies": {
"@types/buffer-from": "^1.1.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.1",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"canvas": "^2.8.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^26.1.0",
"jest-canvas-mock": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"dependencies": {
"@canvas/image-data": "^1.0.0",
"axios": "^0.21.1",
"global-mercator": "^3.1.0",
"pako": "^2.0.4",
"webp-hero": "0.0.0-dev.27"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleNameMapper": {
"^#/(.+)": "<rootDir>/src/$1"
}
}
}