-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "@hebcal/cities",
"version": "5.0.1",
"description": "Hebcal city database for candle-lighting times",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-cities.git"
},
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hebcal/hebcal-cities/issues"
},
"homepage": "https://github.com/hebcal/hebcal-cities#readme",
"dependencies": {
"@hebcal/core": "^5.3.8"
},
"scripts": {
"build:rollup": "rollup -c",
"build:json2js": "echo 'export default' > src/geo.js && cat src/geo.json >> src/geo.js",
"build": "npm run build:json2js && npm run build:rollup",
"prepublish": "npm run build",
"test": "ava"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"ava": "^6.1.3",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"rollup": "^4.17.2"
}
}