-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
80 lines (80 loc) · 2.96 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
73
74
75
76
77
78
79
80
{
"name": "satellite.js",
"version": "5.0.0",
"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 --bundleConfigAsCjs --config rollup.config.es.js && node --require @babel/register commands/add-copyright.js 'dist/satellite.es.js'",
"dist:umd": "rollup --bundleConfigAsCjs --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",
"raise": "raise-version",
"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.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.18.9",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-terser": "^0.2.1",
"chokidar": "^3.5.3",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"glob": "^8.0.3",
"jest": "^29.3.1",
"prepend-file": "^2.0.1",
"raise-version": "^0.5.0",
"rimraf": "^3.0.2",
"rollup": "^3.9.1"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"test/propagation/sgp4prop"
]
},
"homepage": "https://github.com/shashwatak/satellite-js",
"directories": {
"lib": "lib",
"test": "test"
}
}