forked from mapbox/timespace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.3 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
55
56
57
58
59
{
"name": "@mapbox/timespace",
"version": "2.0.3",
"description": "compute fuzzy local time from a location",
"main": "index.js",
"dependencies": {
"@mapbox/tilebelt": "^1.0.1",
"@mapbox/tile-cover": "^3.0.2",
"d3-queue": "^3.0.3",
"mkdirp": "^0.5.1",
"moment": "^2.12.0",
"moment-timezone": "^0.5.5",
"rimraf": "^2.5.4",
"simple-statistics": "^2.3.0",
"tile-cover": "^3.0.1"
},
"devDependencies": {
"eslint": "^2.5.1",
"eslint-config-mourner": "^2.0.0",
"tap": "^5.7.0",
"turf": "^2.0.2"
},
"scripts": {
"test": "npm run lint; tap -R spec test/*.test.js;",
"lint": "eslint *.js --fix",
"regenerate": "regenerate/regenerate-timezones.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/timespace.git"
},
"keywords": [
"localization",
"time",
"timezone",
"geo"
],
"author": "morganherlocker",
"license": "MIT",
"bugs": {
"url": "https://github.com/mapbox/timespace/issues"
},
"homepage": "https://github.com/mapbox/timespace#readme",
"eslintConfig": {
"extends": "mourner",
"rules": {
"strict": "off",
"indent": [
2,
2
],
"camelcase": 0,
"space-before-function-paren": [
2,
"never"
]
}
}
}