-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "htm-js",
"version": "0.1.0",
"description": "javascript implementation of the Hierarchical Triangular Mesh method used to index the sphere",
"main": "index.js",
"scripts": {
"test": "babel-node spec/run.js",
"start": "babel-node --presets es2015 index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphanota/htm-js.git"
},
"keywords": [
"Hierarchical",
"Triangular",
"Mesh",
"maps",
"szalay",
"gray",
"fekete",
"kunszt",
"kukol",
"thakar",
"database",
"gis",
"geographic",
"information",
"system",
"coordinates",
"omullane",
"raster"
],
"author": "Angel Montero",
"license": "ISC",
"bugs": {
"url": "https://github.com/alphanota/htm-js/issues"
},
"homepage": "https://github.com/alphanota/htm-js#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jasmine": "^3.1.0"
}
}