-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 902 Bytes
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
{
"name": "@living-papers/article-template",
"version": "0.0.2",
"license": "BSD-3-Clause",
"repository": "uwdata/living-papers-template",
"scripts": {
"assets": "mkdirp build && cp -r assets build",
"clean": "rimraf .cache .temp build",
"prebuild": "npm run assets",
"build": "lpub -o build --tempDir='.temp' index.md",
"prewatch": "npm run assets",
"watch": "lpub -o build --tempDir='.temp' --watch index.md",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"devDependencies": {
"@living-papers/cli": "^0.1.3",
"gh-pages": "^5.0.0",
"mkdirp": "^2.1.6",
"rimraf": "^4.4.1"
},
"living-papers": {
"components": [
{
"name": "draw-elements",
"file": "src/drawElements.js",
"css": "src/drawElements.css"
}
]
},
"dependencies": {
"axios": "^1.6.7",
"d3": "^7.8.5"
}
}