-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.06 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
{
"name": "geo-point",
"version": "2.0.2",
"description": "geo point",
"main": "build",
"types": "build",
"scripts": {
"test": "nyc mocha -r ts-node/register src/*.spec.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rainder/node-geo-point.git"
},
"keywords": [
"geo",
"point",
"struct"
],
"author": "Andrius Skerla",
"license": "ISC",
"bugs": {
"url": "https://github.com/rainder/node-geo-point/issues"
},
"homepage": "https://github.com/rainder/node-geo-point#readme",
"dependencies": {
"compute-deg2rad": "^1.0.0",
"compute-rad2deg": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"html",
"text-summary"
],
"exclude": [
"node_modules",
"coverage",
"src/*.spec.ts"
],
"all": true
}
}