-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
36 lines (36 loc) · 847 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
{
"name": "ephemeris",
"version": "2.0.0",
"description": "JavaScript implementation of Moshier's ephemeris calculations for sun, planets, comets, asteroids and stars.",
"repository": {
"type": "git",
"url": "https://github.com/hemantgoswami/ephemeris"
},
"main": "index.js",
"scripts": {
"test": "node test/index.js"
},
"keywords": [
"ephemeris",
"Moshier",
"astronomy",
"astrology",
"planet",
"planets"
],
"author": "Hemantkumar Goswami",
"license": "GPL-3.0",
"devDependencies": {
"browserify": "^17.0.0",
"del": "^6.0.0",
"eslint": "^7.11.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"tape": "^4.13.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {}
}