-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 830 Bytes
/
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
{
"name": "LasStreamReader",
"version": "1.0.18",
"description": "Library to read LAS formatted lidar datafiles",
"main": "src/las.js",
"scripts": {
"test": "mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnfontaine/LasStreamReader.git"
},
"keywords": [
"LIDAR",
"LAS",
"LAZ"
],
"author": "John Fontaine",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/johnfontaine/LasStreamReader/issues"
},
"homepage": "https://github.com/johnfontaine/LasStreamReader#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-eventemitter": "^1.1.1",
"mocha": "^3.0.2",
"nodeunit": "^0.9.1",
"sinon": "^1.17.5"
},
"dependencies": {
"int64-buffer": "^0.1.9",
"proj4": "^2.4.4",
"request": "^2.74.0"
}
}