forked from jonhester/solar-calc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"name": "@hebcal/solar-calc",
"version": "1.1.2",
"description": "A sunrise/sunset/moonrise/moonset calculator - fork",
"main": "lib/solarCalc.js",
"module": "src/solarCalc.js",
"files": [
"lib",
"src",
"types"
],
"types": "types/solarCalc.d.ts",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "npm run build && mocha",
"lint": "eslint src",
"clean": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "https://github.com/hebcal/solar-calc.git"
},
"keywords": [
"sunrise",
"sunset",
"solar",
"solunar",
"time",
"calc"
],
"author": "Jon Hester",
"license": "MIT",
"bugs": {
"url": "https://github.com/hebcal/solar-calc/issues"
},
"homepage": "https://github.com/hebcal/solar-calc",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"eslint": "^8.26.0",
"mocha": "^10.1.0"
}
}