-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
136 lines (136 loc) · 4.16 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "spacedatastandards.org",
"version": "1.27.0+1734197662504",
"type": "module",
"description": "space data standards framework based on ccsds standards and google flatbuffers",
"main": "index.js",
"files": [
"schema/",
"lib/js/",
"lib/ts/",
"lib/json/",
"src/js",
"dist/",
"README"
],
"keywords": [
"celestrak",
"celestrak.org",
"flatbuffers",
"ccsds",
"nasa",
"space force",
"esa",
"jaxa",
"isro",
"roscosmos",
"cnes",
"dlr",
"uksa",
"asi",
"supremesat",
"ksa",
"supremesat",
"planetary society",
"blue origin",
"spacex",
"orbital sciences",
"aerospace corporation",
"boeing",
"lockheed martin",
"sgp4",
"mean elements",
"space",
"data standards",
"standards",
"satellite",
"orbit determination",
"space debris",
"space situational awareness",
"constellation",
"tles",
"astroinformatics",
"spacemission",
"geospatial",
"astronautics",
"space engineering",
"space science",
"space exploration",
"space industry",
"commercial space",
"civil space",
"space technology",
"mars missions",
"lunar missions",
"space policy",
"space weather",
"space law",
"space security",
"artemis program",
"exoplanets",
"international space station",
"small satellites",
"cubesats",
"space telescopes",
"space probes",
"space robotics",
"deep space network",
"space logistics",
"rocket science",
"space launch systems",
"json",
"javascript",
"typescript",
"php",
"python",
"java",
"dart",
"go",
"swift",
"c++",
"c#",
"rust",
"lobster"
],
"scripts": {
"postinstall": "cd website && npm i",
"test": "mocha",
"test:watch": "nodemon --exec 'npm test' --watch .",
"deploy": "npm run build && npm run build:website && git add -A && git commit -m 'updates' && git push origin main && npm run publish:js",
"publish:js": "npm publish",
"start": "node index.js",
"build": "python ./scripts/createREC.py && python ./scripts/generateSource.py && python ./scripts/generateVersion.py && npm run build:js && python ./scripts/generateArchives.py && python ./scripts/generateJSONIndex.py && python ./scripts/generateGoModule.py",
"build:mac": "python3 ./scripts/generateSource.py && npm run build:js && python3 ./scripts/generateVersion.py && python3 ./scripts/generateArchives.py && python3 ./scripts/generateJSONIndex.py && python3 ./scripts/generateGoModule.py",
"build:website": "cd website && npm run build",
"build:js": "rm -rf ./lib/js && mkdir -p ./lib/js && node ./scripts/createTSIndex.js && tsc && mv ./lib/js/ts/* ./lib/js && rm -R ./lib/js/ts && find ./lib/js -type f -name '*.ts' ! -name '*.d.ts' -delete && python3 ./scripts/generatePackageJSON.py",
"dev": "npm run build && cd website && npm run dev"
},
"funding": {
"type": "corporate",
"url": "https://github.com/DigitalArsenal/spacedatastandards.org/FUNDING.md"
},
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/DigitalArsenal/spacedatastandards.org"
},
"homepage": "https://spacedatastandards.org",
"license": "Apache-2.0",
"dependencies": {
"ajv": "^8.12.0",
"buffer": "^6.0.3",
"esbuild": "^0.20.2",
"flatbuffers": "23.3.3",
"svelte-awesome": "^3.3.1",
"svelte-spa-router": "^4.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"chai": "^5.1.1",
"mocha": "^10.4.0",
"pure-ipfs-only-hash": "^4.0.2",
"sass": "^1.69.5",
"smui-theme": "^7.0.0-beta.15",
"typescript": "^5.2.2"
}
}