forked from manuelmhtr/countries-and-timezones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "countries-and-timezones",
"version": "2.3.1",
"description": "Minimalistic library to work with countries and timezones data.",
"main": "dist/index.js",
"files": [
"dist",
"yarn.lock"
],
"scripts": {
"build": "./node_modules/rollup/dist/bin/rollup -c",
"test": "yarn run build && mocha test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelmhtr/countries-and-timezones.git"
},
"engines": {
"node": ">=8.x",
"npm": ">=5.x"
},
"mocha": {
"ui": "bdd",
"timeout": 1000,
"fullTrace": true,
"recursive": true,
"exit": true,
"bail": true
},
"keywords": [
"Countries",
"Timezones",
"Country",
"Timezone",
"Time",
"Date",
"DST",
"IANA",
"ICANN"
],
"author": "Manuel de la Torre",
"license": "MIT",
"bugs": {
"url": "https://github.com/manuelmhtr/countries-and-timezones/issues"
},
"homepage": "https://github.com/manuelmhtr/countries-and-timezones#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"proxyquire": "^2.1.3",
"rollup": "^2.26.5",
"rollup-plugin-uglify": "^6.0.4",
"sinon": "^9.0.3"
}
}