-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"private": true,
"type": "module",
"name": "@uwdata/living-papers-paper",
"description": "Research papers on Living Papers.",
"repository": "uwdata/living-papers-paper",
"scripts": {
"assets": "mkdirp build && cp -r assets build",
"clean": "rimraf .cache .temp build",
"prebuild": "npm run assets",
"build": "lpub -o build --tempDir='.temp' living-papers.md",
"prewatch": "npm run assets",
"watch": "lpub -o build --tempDir='.temp' --watch living-papers.md"
},
"devDependencies": {
"@living-papers/cli": "~0.1.5",
"mkdirp": "^2.1.6",
"rimraf": "^4.4.1"
},
"living-papers": {
"components": [
{
"name": "barnes-hut",
"file": "src/barnes-hut.js",
"css": "src/barnes-hut.css"
},
{
"name": "tex-math",
"import": "TexMath",
"file": "src/tex-math.js",
"css": "src/tex-math.css"
},
{
"name": "tex-equation",
"import": "TexEquation",
"file": "src/tex-equation.js",
"css": "src/tex-math.css"
}
],
"transforms": [
{
"name": "definitions",
"file": "src/definitions.js"
}
]
}
}