elm-pages/package.json

60 lines
1.6 KiB
JSON
Raw Normal View History

2019-07-22 18:11:26 +03:00
{
2019-07-29 21:56:41 +03:00
"name": "elm-pages",
2021-02-16 21:49:12 +03:00
"version": "1.5.5",
2021-05-16 05:49:42 +03:00
"homepage": "https://elm-pages.com",
2020-10-21 20:23:07 +03:00
"moduleResolution": "node",
2019-07-29 23:44:26 +03:00
"description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",
"main": "index.js",
2019-07-22 18:11:26 +03:00
"scripts": {
2021-05-06 23:26:39 +03:00
"start": "cd examples/docs && npm start",
2021-05-23 20:03:21 +03:00
"test": "elm-verify-examples --run-tests && elm-test && (cd generator && mocha) && (cd examples/routing && npm i && npm run build -- --debug && elm-test)",
2020-12-07 19:31:06 +03:00
"review": "elm-review"
2019-07-22 18:11:26 +03:00
},
2019-08-21 09:02:38 +03:00
"repository": "https://github.com/dillonkearns/elm-pages",
"keywords": [
"elm",
2021-05-16 05:49:42 +03:00
"JAMstack",
2019-08-21 09:02:38 +03:00
"ssg",
"static site generator",
"pwa"
],
2019-07-22 18:11:26 +03:00
"author": "Dillon Kearns",
2019-08-21 09:02:38 +03:00
"license": "BSD-3-Clause",
2019-07-23 16:08:00 +03:00
"dependencies": {
2021-04-21 06:52:15 +03:00
"chokidar": "^3.5.1",
2021-04-18 01:04:24 +03:00
"commander": "^7.2.0",
"connect": "^3.7.0",
2021-02-16 14:13:52 +03:00
"cross-spawn": "7.0.3",
2021-04-06 18:26:44 +03:00
"elm-hot": "^1.1.6",
2021-04-06 00:44:56 +03:00
"elm-optimize-level-2": "^0.1.5",
2021-05-16 05:49:42 +03:00
"fs-extra": "^10.0.0",
2021-04-06 00:44:56 +03:00
"globby": "^11.0.3",
2021-05-08 18:22:31 +03:00
"gray-matter": "^4.0.3",
"kleur": "^4.1.4",
"micromatch": "^4.0.4",
"serve-static": "^1.14.1",
2021-05-08 18:22:31 +03:00
"terser": "^5.7.0",
2021-04-06 00:44:56 +03:00
"xhr2": "^0.2.1"
2019-07-23 16:08:00 +03:00
},
2019-07-22 18:11:26 +03:00
"devDependencies": {
2021-04-11 03:07:42 +03:00
"@types/cross-spawn": "^6.0.2",
2021-05-16 02:08:13 +03:00
"@types/fs-extra": "^9.0.11",
2021-04-01 05:55:28 +03:00
"@types/micromatch": "^4.0.1",
2021-05-08 18:22:31 +03:00
"@types/node": "12.20.12",
2021-05-04 19:46:49 +03:00
"@types/serve-static": "^1.13.9",
2021-05-16 05:49:42 +03:00
"elm-review": "^2.5.1",
"elm-test": "^0.19.1-revision7",
2021-03-24 02:17:27 +03:00
"elm-tooling": "^1.3.0",
2021-05-23 20:03:21 +03:00
"elm-verify-examples": "^5.0.0",
2021-05-08 18:22:31 +03:00
"mocha": "^8.4.0",
"typescript": "^4.2.4"
2019-07-24 07:04:12 +03:00
},
"files": [
"generator/src/",
"generator/template/"
],
2019-07-24 07:04:12 +03:00
"bin": {
2021-04-18 01:04:24 +03:00
"elm-pages": "generator/src/cli.js"
2019-07-22 18:11:26 +03:00
}
2021-05-23 20:03:21 +03:00
}