-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
126 lines (126 loc) · 3.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@ngageoint/geopackage",
"version": "5.0.2-beta",
"description": "GeoPackage JavaScript Library",
"keywords": [
"NGA",
"geopackage"
],
"license": "MIT",
"author": {
"name": "NGA",
"url": "https://www.nga.mil"
},
"contributors": [
"Daniel Barela <[email protected]>",
"Christopher Caldwell <[email protected]>",
"Jared Lincenberg <[email protected]>"
],
"homepage": "https://ngageoint.github.io/geopackage-js/",
"repository": {
"type": "git",
"url": "https://github.com/ngageoint/geopackage-js.git"
},
"bugs": {
"url": "https://github.com/ngageoint/geopackage-js/issues"
},
"bin": "./cli",
"dependencies": {
"@ngageoint/projections-js": "1.0.2",
"@ngageoint/simple-features-geojson-js": "1.1.1",
"@ngageoint/simple-features-js": "1.1.1",
"@ngageoint/simple-features-proj-js": "1.1.3",
"@ngageoint/simple-features-wkb-js": "1.1.1",
"@ngageoint/simple-features-wkt-js": "1.1.1",
"@types/geojson": "7946.0.10",
"@types/offscreencanvas": "^2019.7.0",
"image-size": "0.8.3",
"lodash.sortedindex": "4.1.0",
"lodash.sortedindexof": "4.1.0",
"rtree-sql.js": "1.7.0",
"simplify-js": "1.2.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/chai": "4.2.7",
"@types/fs-extra": "9.0.11",
"@types/lodash": "^4.14.157",
"@types/mocha": "10.0.1",
"@types/node": "16.6.2",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"babel-polyfill": "^6.23.0",
"browserify": "16.5.0",
"browserify-css": "0.15.0",
"canvas-compare": "https://github.com/caldwellc/canvas-compare.git",
"chai": "4.2.0",
"copy-webpack-plugin": "^8.1.1",
"coveralls": "^3.0.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "9.1.0",
"json-loader": "^0.5.7",
"mocha": "10.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "11.7.0",
"node-loader": "^2.0.0",
"node-polyfill-webpack-plugin": "^1.1.0",
"nyc": "^14.1.1",
"prettier": "2.8.3",
"sass": "^1.29.0",
"sass-loader": "^10.0.5",
"source-map-loader": "^4.0.1",
"source-map-support": "0.5.16",
"ts-loader": "^9.3.0",
"ts-node": "^10.9.1",
"typedoc": "0.23.24",
"typescript": "4.9.4",
"webpack": "~5.75.0",
"webpack-bundle-analyzer": "4.4.1",
"webpack-cli": "4.7.0",
"xhr-mock": "2.5.1"
},
"optionalDependencies": {
"better-sqlite3": "^9.1.1",
"chalk": "4.1.1",
"inquirer": "8.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/geopackage.min.js",
"files": [
"dist",
"cli",
"converters"
],
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"temp-dir": "./.test_run",
"report-dir": "./docs/coverage",
"reporter": [
"lcov"
]
},
"scripts": {
"gh-pages-build": "npm install && npm run typedoc --options typedoc.json",
"typedoc": "rm -rf ./docs/api; typedoc --tsconfig tsconfig.json --out docs/api index.ts",
"clean": "rm -rf ./.test_run; rm -rf ./.nyc_output; rm -rf ./docs/coverage; npm run clean-dist; npm run clean-test;",
"clean-dist": "rm -rf ./dist",
"clean-test": "rm -rf test/bundle test/sql-wasm.wasm test/node_modules test/tmp",
"test-node": "npm run clean; nyc --no-clean mocha -r ts-node/register",
"build-browser-test": "npm run clean && webpack -c browser.test.config.js --output-filename browser.test.bundle.js",
"test": "npm run test-node && npm run report",
"report": "nyc report",
"build": "npm run clean && webpack && tsc",
"prepare": "npm run build",
"lint": "eslint ."
}
}