generated from jonathanlurie/es6module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) Β· 1.81 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
60
61
62
63
64
65
66
{
"name": "timezoneturbo",
"version": "1.1.0",
"description": "A boosted, lightweight, whole-globe, high precision, spatial lookup for timezone and local time (plus βοΈ π) β Browser and Node",
"repository": "jonathanlurie/timezoneturbo",
"main": "dist/timezoneturbo.cjs.js",
"module": "dist/timezoneturbo.es.js",
"browser": "dist/timezoneturbo.umd.js",
"entry": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production rollup -c",
"dev": "serve . & NODE_ENV=development rollup -w -c",
"doc": "documentation build src/index.js -o ./doc/ --sort-order alpha --theme doc_theme -f html",
"lint": "eslint src"
},
"author": "Jonathan Lurie",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"documentation": "^12.3.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"rollup": "^2.6.1",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^5.3.0",
"serve": "^11.3.0",
"@rollup/plugin-json": "^4.1.0"
},
"eslintConfig": {
"extends": "eslint-config-airbnb-base",
"rules": {
"semi": [
"error",
"never"
],
"no-underscore-dangle": [
"off",
{
"allowAfterThis": true
}
],
"max-len": [
"warn",
{
"code": 150
}
],
"prefer-destructuring": [
"off"
],
"no-param-reassign": [
"warn"
]
}
},
"dependencies": {
"robust-point-in-polygon": "^1.0.3",
"suncalc": "^1.8.0"
}
}