-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 875 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 875 Bytes
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
{
"name": "ospoint",
"version": "0.2.1",
"description": "Converts Ordnance Survey grid references into Longitgude and Latitude",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test node_modules/.bin/nyc node_modules/.bin/mocha tests --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/ospoint"
},
"keywords": [
"ordnance",
"survey",
"converter",
"longitude",
"latitude",
"northings",
"eastings"
],
"devDependencies": {
"chai": "~4.3.0",
"mocha": "~8.3.0",
"nyc": "~15.1.0"
},
"nyc": {
"include": [
"index.js"
],
"extension": [
".js"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"runkitExampleFilename": "example.js",
"dependencies": {},
"author": "Ideal Postcodes",
"license": "MIT"
}