-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.11 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
43
44
45
46
47
48
49
50
{
"name": "meeusjs",
"version": "1.0.3",
"description": "Implementation of the Astronomical Algorithms of Jean Meeus in Javascript ",
"dependencies": {},
"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": "lib/Astro.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Fabiz/Meeus.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"
}