-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "shapefile.js",
"version": "1.1.4",
"description": "Easily read and parse Shapefiles from the browser.",
"keywords": [
"shapefiles",
"shapefile",
"shape",
"dbase",
"shp",
"shx",
"dbf",
"esri"
],
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "ts-standard",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/matthewdowns/shapefile.js.git"
},
"author": "Matthew Downs <matthew.downsc@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/matthewdowns/shapefile.js/issues"
},
"homepage": "https://github.com/matthewdowns/shapefile.js#readme",
"dependencies": {
"jszip": "^3.7.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.5",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"rimraf": "^5.0.5",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.5.0",
"ts-standard": "^12.0.2",
"tslib": "^2.3.1",
"typescript": "^5.0.2"
}
}