forked from shashwatak/satellite-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.75 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
65
66
67
68
69
70
71
72
{
"name": "satellite.js",
"version": "4.1.3",
"description": "SGP4/SDP4 calculation library",
"main": "lib/index.js",
"jsnext:main": "dist/satellite.es.js",
"types": "types/index.d.ts",
"module": "dist/satellite.es.js",
"scripts": {
"build": "rimraf lib dist && npm run transpile && npm run dist",
"transpile": "babel src --out-dir lib --ignore indexUmd.js && node --require @babel/register commands/add-copyright.js 'lib/**/*.js'",
"dist": "npm run dist:es && npm run dist:umd:dev && npm run dist:umd:prod",
"dist:es": "rollup --config rollup.config.es.js && node --require @babel/register commands/add-copyright.js 'dist/satellite.es.js'",
"dist:umd": "rollup --config rollup.config.js",
"dist:umd:dev": "cross-env NODE_ENV=development npm run dist:umd && node --require @babel/register commands/add-copyright.js 'dist/**/satellite.js'",
"dist:umd:prod": "cross-env NODE_ENV=production npm run dist:umd && node --require @babel/register commands/add-copyright.js 'dist/**/satellite.min.js'",
"watch:es": "node --require @babel/register rollup.watch.es.js",
"copy": "copyfiles -u 1 'dist/**/*' sgp4_verification/lib/sgp4",
"lint": "eslint src",
"lint:test": "eslint test",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "npm run test:coverage && cat coverage/lcov.info | coveralls",
"prepublishOnly": "npm run lint && npm run lint:test && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/shashwatak/satellite-js"
},
"keywords": [
"sgp4",
"satellite"
],
"author": "Shashwat Kandadai <[email protected]> (https://github.com/shashwatak)",
"contributors": [
"Dmitriy Pushkov <[email protected]> (http://www.ezze.org)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shashwatak/satellite-js/issues"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"chokidar": "^3.4.2",
"copyfiles": "^2.3.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"glob": "^7.1.6",
"jest": "^26.4.2",
"prepend-file": "^2.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.26.11",
"rollup-plugin-terser": "^7.0.2"
},
"homepage": "https://github.com/shashwatak/satellite-js",
"directories": {
"lib": "lib",
"test": "test"
}
}