forked from mivion/ephemeris
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
60
61
62
63
64
{
"name": "ephemeris",
"version": "0.2.0",
"description": "Pure javascript implementation of ephemeris calculations for sun, planets, comets, asteroids and stars.",
"repository": {
"type": "git",
"url": "https://github.com/mivion/ephemeris"
},
"main": "dist/ephemeris.cjs.js",
"module": "dist/ephemeris.esm.js",
"browser": "dist/ephemeris.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "npx rollup -c",
"watch": "npx rollup -c -w",
"test": "npx jest --coverage",
"test:watch": "npx jest --watch",
"lint": "npx eslint ."
},
"keywords": [
"ephemeris",
"Moshier"
],
"author": "mivion",
"contributors": [
"mivion <[email protected]>",
"Kent Bye <[email protected]>",
"blucobalto <[email protected]>",
"Albert R. Timashev <[email protected]>"
],
"license": "GPL-2.0-or-later",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"eslint": "^5.16.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"prettier": "^1.17.0",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3"
},
"dependencies": {
"core-js": "^3.0.1",
"lodash": "^4.17.11",
"luxon": "^1.13.0"
}
}