-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 2.73 KB
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
{
"name": "touhou-university",
"version": "0.30.0",
"private": true,
"type": "module",
"scripts": {
"build": "node scripts/build.mjs && node scripts/build-gaokao-downloads.mjs",
"dev": "node scripts/dev.mjs",
"new:section": "node scripts/new-section.mjs",
"portraits": "node scripts/switch-portrait-set.mjs",
"docs:status": "node scripts/project-status.mjs",
"check:docs": "node scripts/check-docs.mjs",
"check:i18n": "node scripts/check-i18n.mjs",
"check:js": "node scripts/check-js.mjs",
"check:gaokao": "node scripts/check-gaokao.mjs",
"check:courses": "node scripts/check-courses.mjs",
"check:library": "node scripts/check-library.mjs",
"check:housing": "node scripts/check-housing.mjs",
"check:incidents": "node scripts/check-incidents.mjs",
"check:interactions": "node scripts/check-interactions.mjs",
"check:live": "node scripts/check-live-campus.mjs",
"check:clinic": "node scripts/check-clinic.mjs",
"check:appraisal": "node scripts/check-appraisal.mjs",
"check:spellcards": "node scripts/check-spellcard-workshop.mjs",
"check:phantasm": "node scripts/check-phantasm.mjs",
"check:phantasm-exam": "node scripts/check-phantasm-exam.mjs",
"check:records": "node scripts/check-local-records.mjs",
"check:contracts": "node scripts/check-event-contracts.mjs",
"check:knowledge": "node scripts/check-knowledge-graph.mjs",
"check:ethics": "node scripts/check-ethics.mjs",
"check:festival": "node scripts/check-festival.mjs",
"check:fieldwork": "node scripts/check-fieldwork.mjs",
"check:commons": "node scripts/check-commons-calendar.mjs",
"check:careers": "node scripts/check-careers.mjs",
"check:employment": "node scripts/check-employment.mjs",
"check:orientation": "node scripts/check-orientation.mjs",
"check:history": "node scripts/check-campus-history.mjs",
"history:status": "node scripts/check-campus-history.mjs",
"test:browser": "npm run build && node scripts/smoke-browser.mjs",
"capture": "npm run build && node scripts/capture-ui.mjs",
"check": "npm run build && npm run check:docs && npm run check:i18n && npm run check:js && npm run check:contracts && npm run check:knowledge && npm run check:ethics && npm run check:festival && npm run check:fieldwork && npm run check:commons && npm run check:careers && npm run check:employment && npm run check:orientation && npm run check:gaokao && npm run check:phantasm-exam && npm run check:courses && npm run check:library && npm run check:housing && npm run check:incidents && npm run check:clinic && npm run check:appraisal && npm run check:spellcards && npm run check:phantasm && npm run check:records && npm run check:interactions && npm run check:live && npm run check:history"
}
}