pinafore/package.json

192 lines
6.0 KiB
JSON
Raw Normal View History

2018-01-07 00:51:25 +01:00
{
2018-03-12 04:37:24 +01:00
"name": "pinafore",
"description": "Alternative web client for Mastodon",
2018-12-04 16:26:12 +01:00
"version": "0.13.0",
2018-01-07 00:51:25 +01:00
"scripts": {
"lint": "standard && standard --plugin html 'src/routes/**/*.html'",
"lint-fix": "standard --fix && standard --fix --plugin html 'src/routes/**/*.html'",
2018-04-15 00:50:16 +02:00
"dev": "run-s build-svg build-inline-script serve-dev",
"serve-dev": "run-p --race build-sass-watch sapper-dev",
"sapper-dev": "cross-env PORT=4002 sapper dev",
"sapper-prod": "cross-env PORT=4002 node __sapper__/build",
"build": "cross-env NODE_ENV=production npm run build-steps",
"build-steps": "run-s globalize-css build-sass build-svg build-inline-script sapper-build deglobalize-css",
"sapper-build": "sapper build",
"start": "cross-env NODE_ENV=production npm run sapper-prod",
2018-02-19 02:28:08 +01:00
"build-and-start": "run-s build start",
2018-01-27 21:48:22 +01:00
"build-svg": "node ./bin/build-svg.js",
"build-inline-script": "node -r esm ./bin/build-inline-script.js",
2018-01-27 21:48:22 +01:00
"build-sass": "node ./bin/build-sass.js",
"build-sass-watch": "node ./bin/build-sass.js --watch",
"run-mastodon": "node -r esm ./bin/run-mastodon.js",
2018-02-20 03:36:54 +01:00
"test": "cross-env BROWSER=chrome:headless npm run test-browser",
"test-browser": "run-p --race run-mastodon build-and-start test-mastodon",
"test-mastodon": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe",
"test-browser-suite0": "run-p --race run-mastodon build-and-start test-mastodon-suite0",
"test-mastodon-suite0": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe-suite0",
"test-browser-suite1": "run-p --race run-mastodon build-and-start test-mastodon-suite1",
"test-mastodon-suite1": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe-suite1",
"testcafe": "run-s testcafe-suite0 testcafe-suite1",
"testcafe-suite0": "cross-env-shell testcafe --hostname localhost --skip-js-errors -c 4 $BROWSER tests/spec/0*",
"testcafe-suite1": "cross-env-shell testcafe --hostname localhost --skip-js-errors $BROWSER tests/spec/1*",
"test-unit": "mocha -r esm tests/unit/",
2018-03-29 03:22:30 +02:00
"wait-for-mastodon-to-start": "node -r esm bin/wait-for-mastodon-to-start.js",
"wait-for-mastodon-data": "node -r esm bin/wait-for-mastodon-data.js",
"globalize-css": "node ./bin/globalize-css.js",
2018-02-18 23:31:28 +01:00
"deglobalize-css": "node ./bin/globalize-css.js --reverse",
"deploy-prod": "DEPLOY_TYPE=prod ./bin/deploy.sh",
"deploy-dev": "DEPLOY_TYPE=dev ./bin/deploy.sh",
"deploy-all-travis": "./bin/deploy-all-travis.sh",
"backup-mastodon-data": "./bin/backup-mastodon-data.sh",
"sapper-export": "sapper export",
"print-export-info": "node ./bin/print-export-info.js",
"export": "run-s build sapper-export print-export-info"
2018-01-07 00:51:25 +01:00
},
"dependencies": {
2018-08-23 23:47:26 +02:00
"@gamestdio/websocket": "^0.2.8",
"browserslist": "^4.3.4",
"cheerio": "^1.0.0-rc.2",
"child-process-promise": "^2.2.1",
2018-06-23 18:51:26 +02:00
"chokidar": "^2.0.4",
"compression": "^1.7.3",
2018-06-23 18:51:26 +02:00
"cross-env": "^5.2.0",
"css-loader": "^2.0.0",
2018-09-23 16:55:06 +02:00
"emoji-regex": "^7.0.1",
"encoding": "^0.1.12",
"escape-html": "^1.0.3",
"esm": "^3.0.84",
"events-light": "^1.0.5",
2018-11-05 06:30:07 +01:00
"express": "^4.16.4",
"file-api": "^0.10.4",
"font-awesome-svg-png": "^1.2.2",
"form-data": "^2.3.3",
2018-09-23 16:55:06 +02:00
"glob": "^7.1.3",
2018-11-22 05:53:43 +01:00
"helmet": "^3.15.0",
"idb-keyval": "^3.1.0",
2018-08-18 07:26:36 +02:00
"indexeddb-getall-shim": "^1.3.5",
"intersection-observer": "^0.5.1",
"localstorage-memory": "^1.0.3",
"lodash-es": "^4.17.11",
"lodash-webpack-plugin": "^0.11.5",
"mkdirp": "^0.5.1",
2018-11-22 05:53:43 +01:00
"node-fetch": "^2.3.0",
"node-sass": "^4.10.0",
"npm-run-all": "^4.1.5",
"p-any": "^1.1.0",
"page-lifecycle": "^0.1.1",
"performance-now": "^2.1.0",
"pify": "^4.0.1",
"quick-lru": "^2.0.0",
"requestidlecallback": "^0.3.0",
"rollup": "^0.67.4",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^3.0.0",
"sapper": "github:nolanlawson/sapper#nolan/sw-index-html-built",
"serve-static": "^1.13.2",
"stringz": "^1.0.0",
2018-11-13 02:34:12 +01:00
"svelte": "^2.15.3",
"svelte-extras": "^2.0.2",
2018-09-23 07:18:45 +02:00
"svelte-loader": "^2.11.0",
"svelte-transitions": "^1.2.0",
"svgo": "^1.1.1",
2018-09-23 08:08:23 +02:00
"terser-webpack-plugin": "^1.1.0",
"tiny-queue": "^0.2.1",
"uuid": "^3.3.2",
"web-animations-js": "^2.3.1",
"webpack": "^4.26.1",
"webpack-bundle-analyzer": "^3.0.3"
2018-01-07 00:51:25 +01:00
},
"devDependencies": {
"assert": "^1.4.1",
"eslint-plugin-html": "^5.0.0",
"mocha": "^5.2.0",
"now": "^12.1.8",
2018-09-23 16:55:06 +02:00
"standard": "^12.0.1",
2018-11-22 05:53:43 +01:00
"testcafe": "^0.23.2"
},
2018-01-07 00:51:25 +01:00
"engines": {
"node": ">= 8"
2018-02-09 07:29:29 +01:00
},
"standard": {
"globals": [
"fetch",
"IDBKeyRange",
"IDBObjectStore",
"indexedDB",
"requestAnimationFrame",
"requestIdleCallback",
"location",
"localStorage",
"IntersectionObserver",
2018-02-09 07:31:05 +01:00
"URL",
2018-02-11 18:37:13 +01:00
"Event",
"history",
"performance",
2018-02-09 07:31:05 +01:00
"self",
"caches",
"__routes__",
"__shell__",
2018-02-19 00:30:42 +01:00
"__assets__",
2018-02-20 03:24:22 +01:00
"test",
2018-02-26 05:45:11 +01:00
"fixture",
2018-03-03 02:54:38 +01:00
"Element",
"FormData",
"atob",
"btoa",
2018-03-21 17:38:20 +01:00
"Blob",
2018-04-20 06:38:01 +02:00
"Element",
"Image",
"NotificationEvent",
"NodeList",
"DOMParser",
"CSS"
2018-02-09 07:29:29 +01:00
],
"ignore": [
"dist",
"src/routes/_utils/asyncModules.js",
"src/routes/_components/dialog/asyncDialogs.js"
2018-02-09 07:29:29 +01:00
]
},
2018-03-29 03:22:30 +02:00
"esm": {
"mode": "auto",
2018-03-06 05:51:42 +01:00
"cjs": "vars"
2018-03-12 04:37:24 +01:00
},
"now": {
"type": "npm",
2018-03-12 04:37:24 +01:00
"env": {
"NODE_ENV": "production"
},
"files": [
"bin",
"inline-script.js",
"original-static",
2018-03-12 04:37:24 +01:00
"scss",
"src",
"static",
2018-03-12 04:37:24 +01:00
"package.json",
"package-lock.json",
"webpack",
"webpack.config.js"
],
"engines": {
"node": "^8.0.0"
}
},
"greenkeeper": {
"ignore": [
"sapper"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolanlawson/pinafore.git"
},
"keywords": [],
"author": "Nolan Lawson <nolan@nolanlawson.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/nolanlawson/pinafore/issues"
},
"homepage": "https://github.com/nolanlawson/pinafore#readme"
2018-01-07 00:51:25 +01:00
}