-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.99 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.99 KB
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
60
61
62
63
64
65
66
67
68
69
{
"name": "jzero",
"version": "2.0.0",
"description": "Open-source astrology calculations. Use as JavaScript library or HTTP API. Birth charts, transits, progressions, synastry. Call from Python, Java, C#, Go, Rust, or any language.",
"type": "module",
"main": "astrology/index.js",
"exports": {
".": "./astrology/index.js",
"./calculator": "./astrology/core/calculator.js",
"./csv": "./astrology/core/csv-calculator.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "node test/test-jd.js && node test/test-inner-planets.js && node test/test-geolocation.js",
"test:accuracy": "node test/test-accuracy.js",
"start": "node server/api.js",
"dev": "NODE_ENV=development LOG_LEVEL=DEBUG node server/api.js",
"build": "npm run build:frontend",
"build:frontend": "cd public/app && npm run build",
"dev:full": "concurrently \"npm run dev\" \"cd public/app && npm run dev\"",
"setup": "npm install && cd public/app && npm install && cd ../..",
"lint": "eslint . --ext .js",
"validate": "npm run test && npm run lint",
"docs": "node scripts/generate-docs.js",
"validate:config": "node scripts/validate-config.js"
},
"keywords": [
"astrology",
"ephemeris",
"swiss-ephemeris",
"birth-chart",
"natal-chart",
"julian-day",
"planets",
"zodiac",
"houses",
"transits",
"progressions",
"synastry",
"open-source",
"astronomy",
"calculator"
],
"author": "The-Decans-Project/Jzero Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/The-Decans-Project/Jzero"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/The-Decans-Project"
},
"bugs": {
"url": "https://github.com/The-Decans-Project/Jzero/issues"
},
"devDependencies": {
"jest": "^29.0.0",
"concurrently": "^8.2.0"
},
"dependencies": {
"express": "^4.18.0"
},
"optionalDependencies": {
"swisseph": "^2.10.0"
}
}