-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "wkb-raster",
"version": "1.1.0",
"description": "JavaScript parser for the Well-Known Binary (WKB) RASTER type used in PostGIS",
"main": "dist/index.js",
"module": "es/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"es/",
"src/"
],
"scripts": {
"test": "tsc --noEmit -p tsconfig.es.json",
"prebuild:cjs": "rm -rf dist",
"prebuild:es": "rm -rf es",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es": "tsc -p tsconfig.es.json",
"prepublishOnly": "npm run build:cjs && npm run build:es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihmeuw/wkb-raster.git"
},
"author": "David Schneider <davschne@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/ihmeuw/wkb-raster/issues"
},
"homepage": "https://github.com/ihmeuw/wkb-raster#readme",
"keywords": [
"wkb",
"postgis",
"raster",
"parser",
"binary"
],
"devDependencies": {
"tslint": "~5.11.0",
"typescript": "~3.1.3"
}
}