-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 977 Bytes
/
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": "tzdata-coordinate-regex",
"version": "2.0.0",
"description": "A regular expression for time zone coordinates in zone.tab format",
"repository": "shinnn/tzdata-coordinate-regex",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"license": "ISC",
"scripts": {
"prebuild": "eslint .",
"build": "rollup --config=node:module",
"pretest": "npm run-script build",
"test": "node test.js"
},
"module": "index.mjs",
"files": [
"index.js",
"index.mjs"
],
"keywords": [
"regex",
"regexp",
"tz",
"tzdata",
"time",
"zone",
"timezone",
"coordinate",
"coordinates",
"lat",
"latitude",
"lon",
"lng",
"long",
"longitude",
"iso6709",
"match",
"validate",
"validation"
],
"devDependencies": {
"@shinnn/eslint-config": "^7.0.0",
"eslint": "^6.0.1",
"regexp-tree": "0.1.11",
"rollup": "^1.16.6",
"rollup-config-module": "^2.0.2",
"testit": "^3.1.0"
},
"eslintConfig": {
"extends": "@shinnn"
}
}