-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "ginkgoch-shapefile",
"version": "2.7.2",
"description": "This is a NodeJs library to help to read/write shapefile from your disk.",
"main": "./dist/bundle.js",
"types": "./dist/index.d.ts",
"keywords": [
"shapefile for nodejs",
"shapefile reader",
"create shapefile",
"shapefile sdk",
"shapefile source",
"gis"
],
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "rm -rf dist && ./node_modules/.bin/webpack",
"doc": "rm -rf docs && ./node_modules/.bin/typedoc --includes src/shapefile --out docs --module commonjs --mode file ./src",
"clean": "rm -rf dist && rm -rf built"
},
"author": {
"name": "Ginkgoch",
"email": "ginkgoch@outlook.com",
"url": "https://github.com/ginkgoch"
},
"repository": {
"type": "github",
"url": "https://github.com/ginkgoch/node-shapefile"
},
"license": "MIT",
"dependencies": {
"@types/jsts": "^0.17.0",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"ginkgoch-buffer-io": "^1.1.3",
"ginkgoch-filestream": "^1.0.0",
"ginkgoch-geom": "^1.11.1",
"lodash": "^4.17.14"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/jest": "^24.0.15",
"babel-loader": "^8.0.5",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"typedoc": "^0.15.0",
"typescript": "^3.5.3",
"webpack": "^4.29.0",
"webpack-cli": "^3.3.6",
"webpack-merge": "^4.2.1"
}
}