-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "@hebcal/locales",
"version": "6.0.1",
"description": "Translations for Hebcal events in multiple languages",
"module": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebcal/hebcal-locales.git"
},
"author": "Michael J. Radwin (https://github.com/mjradwin)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hebcal/hebcal-locales/issues"
},
"homepage": "https://github.com/hebcal/hebcal-locales#readme",
"dependencies": {
"@hebcal/hdate": "^0.13.5"
},
"files": [
"dist"
],
"scripts": {
"build:rollup": "rollup -c",
"po2json": "node ./po2json.js po/*.po",
"po2golang": "node ./po2golang.js ../hdate-js/po/ashkenazi.po ../hdate-js/po/he.po ../hebcal-es6/po/ashkenazi.po ../hebcal-es6/po/he.po ../hebcal-leyning/po/*.po ../hebcal-learning/po/*.po po/*.po",
"build": "npm run po2json && npm run build:rollup",
"prepublish": "npm run build",
"test": "ava"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"ava": "^6.2.0",
"gettext-parser": "^8.0.0",
"rollup": "^4.31.0"
}
}