-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "@influenceth/astro",
"version": "0.2.6",
"description": "Astrodynamics in Javascript",
"type": "module",
"module": "./build/index.js",
"exports": {
"import": "./build/index.js",
"require": "./build/index.cjs"
},
"files": [
"build/*"
],
"scripts": {
"build": "rollup --config ./rollup.config.js",
"lint": "eslint ./src",
"prepublishOnly": "npm run build",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --recursive",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/influenceth/astro.git"
},
"author": "Unstoppable Games, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/influenceth/astro/issues"
},
"homepage": "https://github.com/influenceth/astro#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"acorn-import-assertions": "^1.8.0",
"almost-equal": "^1.1.0",
"axios": "^1.3.3",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-import-assert": "^2.1.2"
},
"dependencies": {
"buffer": "^6.0.3",
"cephes": "^1.2.0",
"mathjs": "^11.4.0",
"patch-package": "^7.0.0"
}
}