-
Notifications
You must be signed in to change notification settings - Fork 646
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.17 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@knight-lab/timelinejs",
"version": "3.9.13",
"license": "MPL-2.0",
"description": "TimelineJS v3: A Storytelling Timeline built in JavaScript, made by Northwestern University Knight Lab.",
"dependencies": {
"dompurify": "^3.1.7",
"wicg-inert": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"adm-zip": "^0.6.0",
"babel-jest": "^30.4.1",
"fs-extra": "^9.0.1",
"http-server": "^14.1.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.2.0",
"less": "^4.8.0",
"trash-cli": "^7.2.0",
"vite": "^8.1.5",
"vite-plugin-static-copy": "^4.1.1"
},
"overrides": {
"brace-expansion": "5.0.9",
"js-yaml": "3.15.1",
"postcss": "8.5.23",
"test-exclude": "8.0.0",
"glob": "13.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NUKnightLab/TimelineJS3.git"
},
"keywords": [],
"author": "Northwestern University Knight Lab",
"bugs": {
"url": "https://github.com/NUKnightLab/TimelineJS3/issues"
},
"homepage": "https://timeline.knightlab.com",
"scripts": {
"test": "jest",
"dist": "npm run clean && npm run build",
"disttest": "npm run dist && http-server dist -o '/embed/index.html?debug=true&language=es&script_path='",
"compare": "npm run dist && http-server dist -o '/embed/compare.html'",
"clean": "trash dist",
"build": "vite build && node tasks/compile_less.js",
"start": "vite",
"stage": "npm run dist && node tasks/stage.js",
"stage_latest": "npm run dist && node tasks/stage.js latest",
"stage_dev": "npm run dist && node tasks/stage.js dev",
"prepublishOnly": "npm run dist"
},
"contributors": [
{
"name": "Zach Wise",
"email": "wise@northwestern.edu",
"url": "https://github.com/zachwise"
},
{
"name": "Joe Germuska",
"email": "joegermuska@northwestern.edu",
"url": "https://github.com/JoeGermuska"
}
]
}