-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 1.34 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
{
"name": "elmstatic",
"version": "0.7.3",
"description": "Elm-to-HTML static site generator",
"homepage": "https://korban.net/elm/elmstatic",
"repository": "github:alexkorban/elmstatic",
"bin": {
"elmstatic": "./bin/elmstatic.js"
},
"scripts": {
"prepublishOnly": "git tag `jq --raw-output \"\\\"v\\\" + .version\" package.json` && git push origin master --tags",
"start": "$npm_package_bin_elmstatic",
"test-markdown": "rm -rf $GITHUB_WORKSPACE/test-run && mkdir $GITHUB_WORKSPACE/test-run && cd $GITHUB_WORKSPACE/test-run && $INIT_CWD/bin/elmstatic.js init && $INIT_CWD/bin/elmstatic.js build",
"test-elm-markup": "rm -rf $GITHUB_WORKSPACE/test-run && mkdir $GITHUB_WORKSPACE/test-run && cd $GITHUB_WORKSPACE/test-run && $INIT_CWD/bin/elmstatic.js init --elm-markup && $INIT_CWD/bin/elmstatic.js build",
"test": "npm run test-markdown && npm run test-elm-markup",
"test-local": "GITHUB_WORKSPACE=. INIT_CWD=. npm run test"
},
"author": "Alex Korban (https://korban.net/elm)",
"license": "GPL-3.0",
"dependencies": {
"chokidar": "^3.3.0",
"commander": "^2.20.3",
"cross-spawn": "^6.0.5",
"feed": "^2.0.0",
"front-matter": "^3.1.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.6",
"jsdom": "^13.2.0",
"ramda": "^0.26.0",
"remove-markdown": "^0.3.0",
"workerpool": "^5.0.4"
}
}