mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-24 06:54:03 +03:00
61 lines
1.6 KiB
JSON
61 lines
1.6 KiB
JSON
{
|
|
"name": "elm-pages",
|
|
"version": "1.5.5",
|
|
"homepage": "https://elm-pages.com",
|
|
"moduleResolution": "node",
|
|
"description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "cd examples/docs && npm start",
|
|
"test": "elm-verify-examples --run-tests && elm-test && (cd generator && mocha) && (cd examples/routing && npm i && npm run build -- --debug && elm-test)",
|
|
"review": "elm-review"
|
|
},
|
|
"repository": "https://github.com/dillonkearns/elm-pages",
|
|
"keywords": [
|
|
"elm",
|
|
"JAMstack",
|
|
"ssg",
|
|
"static site generator",
|
|
"pwa"
|
|
],
|
|
"author": "Dillon Kearns",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"chokidar": "^3.5.1",
|
|
"commander": "^7.2.0",
|
|
"connect": "^3.7.0",
|
|
"cross-spawn": "7.0.3",
|
|
"elm-doc-preview": "^5.0.5",
|
|
"elm-hot": "^1.1.6",
|
|
"elm-optimize-level-2": "^0.1.5",
|
|
"fs-extra": "^10.0.0",
|
|
"globby": "^11.0.3",
|
|
"gray-matter": "^4.0.3",
|
|
"kleur": "^4.1.4",
|
|
"micromatch": "^4.0.4",
|
|
"serve-static": "^1.14.1",
|
|
"terser": "^5.7.0",
|
|
"xhr2": "^0.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cross-spawn": "^6.0.2",
|
|
"@types/fs-extra": "^9.0.11",
|
|
"@types/micromatch": "^4.0.1",
|
|
"@types/node": "12.20.12",
|
|
"@types/serve-static": "^1.13.9",
|
|
"elm-review": "^2.5.1",
|
|
"elm-test": "^0.19.1-revision7",
|
|
"elm-tooling": "^1.3.0",
|
|
"elm-verify-examples": "^5.0.0",
|
|
"mocha": "^8.4.0",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"files": [
|
|
"generator/src/",
|
|
"generator/template/"
|
|
],
|
|
"bin": {
|
|
"elm-pages": "generator/src/cli.js"
|
|
}
|
|
}
|