elm-pages/package.json

63 lines
1.8 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": {
"start": "cd examples/end-to-end && npm start",
2021-06-05 04:19:34 +03:00
"test": "elm-verify-examples --run-tests && elm-test && (cd generator && mocha) && (cd examples/routing && npm i && npm run build -- --debug && elm-test)",
2021-06-05 04:11:00 +03:00
"cypress": "npm start & cypress run --spec cypress/integration/elm-pages-dev.spec.js",
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-07-21 01:14:00 +03:00
"chokidar": "3.5.2",
2021-07-11 05:19:27 +03:00
"commander": "8.0.0",
"connect": "^3.7.0",
2021-02-16 14:13:52 +03:00
"cross-spawn": "7.0.3",
"elm-doc-preview": "^5.0.5",
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-07-07 19:02:40 +03:00
"globby": "11.0.4",
2021-05-08 18:22:31 +03:00
"gray-matter": "^4.0.3",
"kleur": "^4.1.4",
"micromatch": "^4.0.4",
"object-hash": "^2.2.0",
"serve-static": "^1.14.1",
2021-07-07 19:02:40 +03:00
"terser": "5.7.1",
2021-07-21 01:14:00 +03:00
"undici": "4.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-07-07 19:02:40 +03:00
"@types/fs-extra": "9.0.12",
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-07-07 19:02:40 +03:00
"@types/serve-static": "1.13.10",
2021-07-26 18:48:55 +03:00
"cypress": "^8.0.0",
2021-06-17 21:56:02 +03:00
"elm-review": "^2.5.3",
2021-05-16 05:49:42 +03:00
"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",
2021-07-07 19:02:40 +03:00
"typescript": "4.3.5"
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
}
}