-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 830 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 830 Bytes
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
{
"name": "open-source-astrology-calculator",
"version": "1.0.0",
"description": "Free, open-source astrology calculator using Julian Day forward calculations. Giving back to the community! 🌟",
"type": "module",
"main": "src/calculator.js",
"scripts": {
"dev": "npx serve public -p 3000",
"test": "node --experimental-modules test/test.js",
"start": "npx serve public -p 8080"
},
"keywords": [
"astrology",
"birth-chart",
"natal-chart",
"julian-day",
"ephemeris",
"planets",
"zodiac",
"houses",
"open-source",
"astronomy",
"calculator"
],
"author": "Community Contribution",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/astrology-calculator"
},
"devDependencies": {},
"dependencies": {}
}