2019-07-22 18:11:26 +03:00
|
|
|
{
|
2019-07-29 21:56:41 +03:00
|
|
|
"name": "elm-pages",
|
2021-12-02 02:38:18 +03:00
|
|
|
"version": "2.1.11",
|
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.",
|
2019-08-15 03:42:02 +03:00
|
|
|
"main": "index.js",
|
2019-07-22 18:11:26 +03:00
|
|
|
"scripts": {
|
2021-07-29 22:35:55 +03:00
|
|
|
"start": "cd examples/end-to-end && npm start",
|
2021-10-16 19:10:20 +03:00
|
|
|
"test": "npx elmi-to-json --version && elm-verify-examples --run-tests && elm-test && (cd generator && mocha) && (cd examples/routing && npm i && npm run build -- --debug && elm-test) && npm run test:snapshot",
|
2021-10-20 22:07:26 +03:00
|
|
|
"test:snapshot": "(cd examples/escaping && npm install && npm test && cd ../..) && (cd examples/base-path && npm install && npm test && cd ../..)",
|
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-12-10 21:45:04 +03:00
|
|
|
"commander": "8.3.0",
|
2021-04-09 22:00:24 +03:00
|
|
|
"connect": "^3.7.0",
|
2021-12-27 08:56:33 +03:00
|
|
|
"cookie": "^0.4.1",
|
2021-02-16 14:13:52 +03:00
|
|
|
"cross-spawn": "7.0.3",
|
2021-11-06 04:13:26 +03:00
|
|
|
"devcert": "^1.2.0",
|
2021-05-28 21:37:03 +03:00
|
|
|
"elm-doc-preview": "^5.0.5",
|
2021-04-06 18:26:44 +03:00
|
|
|
"elm-hot": "^1.1.6",
|
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",
|
2021-08-20 19:46:16 +03:00
|
|
|
"jsesc": "^3.0.2",
|
2021-05-08 18:22:31 +03:00
|
|
|
"kleur": "^4.1.4",
|
2021-12-15 23:22:25 +03:00
|
|
|
"memfs": "3.4.0",
|
2021-05-08 18:22:31 +03:00
|
|
|
"micromatch": "^4.0.4",
|
2021-07-06 16:26:14 +03:00
|
|
|
"object-hash": "^2.2.0",
|
2021-04-09 22:00:24 +03:00
|
|
|
"serve-static": "^1.14.1",
|
2021-08-26 03:54:05 +03:00
|
|
|
"terser": "^5.7.2",
|
|
|
|
"undici": "^4.4.7",
|
2021-08-17 21:53:06 +03:00
|
|
|
"which": "^2.0.2"
|
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-08-26 03:54:05 +03:00
|
|
|
"@types/micromatch": "^4.0.2",
|
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-08-25 20:27:50 +03:00
|
|
|
"cypress": "^8.3.0",
|
2021-08-18 04:30:27 +03:00
|
|
|
"elm-optimize-level-2": "^0.1.5",
|
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-12-18 22:22:55 +03:00
|
|
|
"elm-verify-examples": "^5.2.0",
|
2021-08-25 19:51:29 +03:00
|
|
|
"elmi-to-json": "^1.2.0",
|
2021-08-26 03:54:05 +03:00
|
|
|
"mocha": "^9.1.0",
|
2021-07-07 19:02:40 +03:00
|
|
|
"typescript": "4.3.5"
|
2019-07-24 07:04:12 +03:00
|
|
|
},
|
2019-07-29 23:53:30 +03:00
|
|
|
"files": [
|
2021-05-19 17:54:10 +03:00
|
|
|
"generator/src/",
|
2021-08-27 20:27:37 +03:00
|
|
|
"generator/review/",
|
|
|
|
"src/",
|
2021-08-01 06:31:15 +03:00
|
|
|
"generator/template/",
|
|
|
|
"generator/static-code/"
|
2019-07-29 23:53:30 +03:00
|
|
|
],
|
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-12-27 08:56:33 +03:00
|
|
|
}
|