forked from sfpc-amd/txt-conversations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 976 Bytes
/
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
{
"name": "txt",
"version": "1.3.1",
"description": "A tiny cutup code poetry zine",
"main": "README.md",
"scripts": {
"build_corpus": "./bin/build_corpus.sh",
"generate": "./bin/generate.sh",
"mdown": "mdown -i README.md --header 'src/site/header.html' --footer 'src/site/footer.html' > dist/index.html",
"build-site": "mkdir -p dist; npm run mdown; cp src/site/styles.css dist/styles.css;",
"deploy": "npm run build-site; gh-pages -d dist; npm run clean;",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/andyinabox/txt.git"
},
"keywords": [
"zine",
"code",
"poetry"
],
"author": "Andy Dayton <[email protected]> (http://andydayton.com/)",
"bugs": {
"url": "https://github.com/andyinabox/txt/issues"
},
"license" : "ISC",
"homepage": "https://github.com/andyinabox/txt",
"devDependencies": {
"gh-markdown-cli": "^0.2.0",
"gh-pages": "^0.11.0"
}
}