forked from mourner/suncalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 819 Bytes
/
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
{
"name": "suncalc",
"version": "1.6.0",
"description": "A tiny JavaScript library for calculating sun/moon positions and phases.",
"homepage": "https://github.com/mourner/suncalc",
"keywords": [
"sun",
"astronomy",
"math",
"calculation",
"sunrise",
"sunset",
"twilight",
"moon",
"illumination"
],
"author": "Vladimir Agafonkin",
"repository": {
"type": "git",
"url": "git://github.com/mourner/suncalc.git"
},
"main": "suncalc.js",
"devDependencies": {
"tape": "^2.12.3",
"jshint": "^2.5.0",
"faucet": "0.0.1"
},
"scripts": {
"test": "jshint suncalc.js test.js && node test.js | faucet",
"cov": "istanbul cover test.js -x test.js"
},
"jshintConfig": {
"quotmark": "single",
"trailing": true,
"unused": true
}
}