-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "where",
"description": "Geographical utilities for location-based Node.js applications",
"keywords": [
"location",
"coordinates",
"geo",
"point",
"gis"
],
"author": "Henri Bergius <[email protected]>",
"version": "0.4.2",
"license": "MIT",
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"@stryker-mutator/core": "^6.3.1",
"@stryker-mutator/mocha-runner": "^6.3.1",
"chai": "^4.1.0",
"coveralls": "^3.0.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^8.0.0",
"express": "^4.14.0",
"mocha": "^10.2.0",
"nyc": "^15.0.0",
"stryker-cli": "^1.0.0"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/bergie/where.git"
},
"scripts": {
"pretest": "eslint src test",
"test": "nyc mocha -R spec",
"mutate": "stryker run"
},
"nyc": {
"include": [
"src/*.js",
"*.js"
]
}
}