-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.2 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
{
"name": "muqawwim",
"version": "0.1.0",
"description": "Easily and accurately convert dates among the Gregorian, Julian, Hebrew, Islamic, and Persian calendars",
"keywords": [
"calendars",
"muqawwim"
],
"homepage": "https://github.com/theodore-s-beers/calendars#readme",
"bugs": {
"url": "https://github.com/theodore-s-beers/calendars/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theodore-s-beers/calendars.git"
},
"license": "MIT",
"author": "Theo Beers",
"main": "ts/main.js",
"scripts": {
"check": "tsc",
"compile": "esbuild ts/main.ts --bundle --minify --sourcemap --outfile=js/calendar.min.js",
"format": "prettier --write .",
"lint": "eslint --fix --ignore-path .prettierignore . && stylelint --fix css/styles.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"esbuild": "^0.21.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"stylelint": "^16.5.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.4.5",
"unical": "github:theodore-s-beers/unical"
}
}