-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
59 lines (59 loc) · 1.4 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
51
52
53
54
55
56
57
58
59
{
"name": "sunrise-sunset-js",
"version": "2.2.1",
"description": "Sunrise and sunset time calculation for given coordinates",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/preset-env": "7.12.7",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-typescript": "8.0.0",
"babel-jest": "26.6.3",
"coveralls": "3.1.0",
"jest-cli": "26.6.3",
"pico-static-server": "3.0.3",
"rollup": "2.34.2",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-terser": "7.0.2",
"rollup-watch": "4.3.1",
"tslib": "2.0.3",
"typescript": "4.1.2"
},
"scripts": {
"build": "rollup -c ./rollup.config.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://udivankin@github.com/udivankin/sunrise-sunset.git"
},
"keywords": [
"sunrise",
"sunset",
"sun",
"suncalc",
"day",
"events"
],
"author": {
"name": "Aleksei Udivankin",
"email": "allx@mail.ru",
"url": "https://github.com/udivankin"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/udivankin/sunrise-sunset/issues"
},
"homepage": "https://github.com/udivankin/sunrise-sunset#readme",
"jest": {
"cache": false,
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}