-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "satsim",
"version": "0.7.0",
"description": "SatSim for JavaScript.",
"homepage": "https://github.com/ssc-ai/satsimjs/",
"license": "MIT",
"author": {
"name": "SatSim JS.",
"url": "https://github.com/ssc-ai/satsimjs/"
},
"keywords": [
"cesium",
"satsim"
],
"repository": {
"type": "git",
"url": "https://github.com/ssc-ai/satsimjs/"
},
"main": "src/index.js",
"type": "module",
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"start": "webpack serve --config webpack.config.js --open",
"app": "node app/app.js",
"test": "jest --verbose --runInBand",
"coverage": "jest --verbose --runInBand --collectCoverage",
"lint": "eslint \"./**/*.js\" --cache --quiet"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
]
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^8.57.0",
"eslint-plugin-node": "^11.1.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.7.0",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"cesium": "^1.116.0",
"satellite.js": "^5.0.0"
}
}