forked from mourner/suncalc
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1 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": "suncalc",
"version": "1.7.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": {
"eslint": "^1.9.0",
"eslint-config-mourner": "^1.0.1",
"tap": "^2.2.0"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"indent": 0,
"array-bracket-spacing": 0,
"strict": 0,
"brace-style": 0
},
"env": {
"amd": true
}
},
"scripts": {
"pretest": "eslint suncalc.js test.js",
"test": "tap test.js",
"cov": "tap test.js --cov"
},
"jshintConfig": {
"quotmark": "single",
"trailing": true,
"unused": true
}
}