-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 874 Bytes
/
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
{
"name": "vsop87",
"version": "1.0.5",
"description": "A fast implementation of the VSOP87 theory in JavaScript.",
"author": "G.C. Marty <edo999@gmail.com> (https://gu.illau.me)",
"keywords": [
"vsop87",
"astronomy",
"planets",
"ephemeris"
],
"license": "MIT",
"main": "dist/vsop87c.js",
"module": "dist/vsop87c.js",
"files": [
"LICENSE",
"README.md",
"dist/*.js"
],
"devDependencies": {
"@rollup/plugin-wasm": "^3.0.0",
"mocha": "^6.2.2",
"prettier": "1.19.1",
"rollup": "^1.27.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.2"
},
"scripts": {
"test": "mocha",
"prettier": "prettier --write \"{src,test}/**/*.js\"",
"build": "rollup --config"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "es5"
}
}