-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "@goldenius/hades-js",
"version": "2.1.2",
"description": "Calculate positions of the planets from an geocentric perspective, ASC, MC, houses and aspects providing date, time, and coordinates.",
"repository": {
"type": "git",
"url": "https://github.com/magicalmysticalcat/hades-js.git"
},
"keywords": [
"astrology",
"placidus",
"ascendant",
"planetary-aspects"
],
"author": "Brian Langer <[email protected]> (http://www.supracoelum.com)",
"license": "MIT",
"main": "./distribution/index.js",
"types": "./distribution/index.d.ts",
"scripts": {
"test": "npm run prepare && jasmine",
"test-library": "npm run prepare && npm run dev",
"dev": "node ./global-tests/librarytest.js",
"prepare": "del-cli --force ./distribution && npm run build",
"build": "tsc"
},
"files": [
"distribution/*"
],
"dependencies": {
"jasmine-core": "^3.3.0",
"meeusjs": "^1.0.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.21",
"moment-timezone-all": "^0.5.5"
},
"devDependencies": {
"@types/jasmine": "^3.5.10",
"del-cli": "^3.0.0",
"jasmine": "^3.5.0",
"jasmine-ts": "^0.3.0",
"jasmine-ts-console-reporter": "^3.1.1",
"typescript": "^3.8.3"
}
}