forked from Fabiz/MeeusJs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.14 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
47
48
49
50
51
52
{
"name": "meeusjs",
"version": "1.0.3",
"description": "Implementation of the Astronomical Algorithms of Jean Meeus in Javascript ",
"dependencies": {
"moment": "^2.18.1"
},
"devDependencies": {
"closurecompiler": "~1",
"eslint": "^1.10.3",
"jsdoc": "^3.4.0"
},
"eslintConfig": {
"rules": {
"indent": 0,
"array-bracket-spacing": 0,
"strict": 0,
"brace-style": 0
}
},
"scripts": {
"lint": "eslint lib/*.js",
"pretest": "npm run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "./node_modules/.bin/jsdoc lib/ package.json"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/timelapseplus/MeeusJs.git"
},
"keywords": [
"meeus",
"solar",
"lunar",
"eclipse",
"astronomy",
"astronomical",
"algorithms",
"javascript",
"julianday",
"sunrise",
"sunset",
"moon"
],
"author": "Fabio Soldati (http://www.peakfinder.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fabiz/Meeus/issues"
},
"homepage": "https://github.com/Fabiz/Meeus#readme"
}