site/node_modules/lunarphase-js/package.json
2022-10-22 09:24:08 -05:00

49 lines
1.4 KiB
JSON

{
"name": "lunarphase-js",
"version": "1.0.10",
"description": "Calculate phase of the moon using Julian date",
"author": "Jason Sturges <jason@jsonsturges.com> (https://jasonsturges.com)",
"homepage": "https://jasonsturges.github.io/lunarphase-js/",
"repository": {
"type": "git",
"url": "https://github.com/jasonsturges/lunarphase-js"
},
"license": "ISC",
"keywords": [
"astronomy",
"moon",
"lunar",
"phase"
],
"main": "dist/cjs/lunarphase-js.js",
"module": "dist/esm/lunarphase-js.js",
"browser": "dist/browser/lunarphase-js..js",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prebuild:types": "rimraf ./build",
"build:types": "tsc -p ./tsconfig.json --outDir build && api-extractor run",
"predoc:jsdoc": "rimraf ./docs",
"docs:jsdoc": "jsdoc -r src/*s -R README.md -d ./docs",
"predoc:typedoc": "rimraf ./docs",
"docs:typedoc": "typedoc src --out docs",
"clean": "rimraf ./build ./dist ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"eslint": "^8.9.0",
"jsdoc": "^3.6.10",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}