2018-01-06 23:51:25 +00:00
|
|
|
{
|
2018-03-12 03:37:24 +00:00
|
|
|
"name": "pinafore",
|
|
|
|
"description": "Alternative web client for Mastodon",
|
2018-12-14 08:26:03 +00:00
|
|
|
"version": "0.14.1",
|
2018-01-06 23:51:25 +00:00
|
|
|
"scripts": {
|
2018-12-11 15:31:48 +00:00
|
|
|
"lint": "standard && standard --plugin html 'src/routes/**/*.html'",
|
|
|
|
"lint-fix": "standard --fix && standard --fix --plugin html 'src/routes/**/*.html'",
|
2018-04-14 23:50:16 +01:00
|
|
|
"dev": "run-s build-svg build-inline-script serve-dev",
|
2018-12-11 15:31:48 +00:00
|
|
|
"serve-dev": "run-p --race build-sass-watch sapper-dev",
|
2018-12-16 03:21:20 +00:00
|
|
|
"sapper-dev": "cross-env NODE_ENV=development PORT=4002 sapper dev",
|
2018-12-11 15:31:48 +00:00
|
|
|
"sapper-prod": "cross-env PORT=4002 node __sapper__/build",
|
2018-05-26 21:51:41 +01:00
|
|
|
"build": "cross-env NODE_ENV=production npm run build-steps",
|
2018-12-14 05:32:25 +00:00
|
|
|
"build-steps": "run-s build-sass build-svg build-inline-script sapper-build",
|
2018-05-26 21:51:41 +01:00
|
|
|
"sapper-build": "sapper build",
|
2018-12-11 15:31:48 +00:00
|
|
|
"start": "cross-env NODE_ENV=production npm run sapper-prod",
|
2018-02-19 01:28:08 +00:00
|
|
|
"build-and-start": "run-s build start",
|
2018-01-27 20:48:22 +00:00
|
|
|
"build-svg": "node ./bin/build-svg.js",
|
2018-09-23 20:26:01 +01:00
|
|
|
"build-inline-script": "node -r esm ./bin/build-inline-script.js",
|
2018-01-27 20:48:22 +00:00
|
|
|
"build-sass": "node ./bin/build-sass.js",
|
|
|
|
"build-sass-watch": "node ./bin/build-sass.js --watch",
|
2018-05-25 04:07:43 +01:00
|
|
|
"run-mastodon": "node -r esm ./bin/run-mastodon.js",
|
2018-02-20 02:36:54 +00:00
|
|
|
"test": "cross-env BROWSER=chrome:headless npm run test-browser",
|
2018-05-26 21:51:41 +01:00
|
|
|
"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",
|
2018-05-27 17:27:29 +01:00
|
|
|
"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*",
|
2018-11-20 08:01:23 +00:00
|
|
|
"test-unit": "mocha -r esm tests/unit/",
|
2018-03-29 02:22:30 +01: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",
|
2018-12-09 01:15:01 +00:00
|
|
|
"deploy-prod": "DEPLOY_TYPE=prod ./bin/deploy.sh",
|
|
|
|
"deploy-dev": "DEPLOY_TYPE=dev ./bin/deploy.sh",
|
|
|
|
"deploy-all-travis": "./bin/deploy-all-travis.sh",
|
2018-12-11 15:31:48 +00:00
|
|
|
"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-06 23:51:25 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-08-23 22:47:26 +01:00
|
|
|
"@gamestdio/websocket": "^0.2.8",
|
2018-12-15 10:06:12 +00:00
|
|
|
"@webcomponents/custom-elements": "^1.2.1",
|
2018-12-16 01:13:27 +00:00
|
|
|
"browserslist": "^4.3.6",
|
2018-06-03 23:30:37 +01:00
|
|
|
"cheerio": "^1.0.0-rc.2",
|
|
|
|
"child-process-promise": "^2.2.1",
|
2018-06-23 17:51:26 +01:00
|
|
|
"chokidar": "^2.0.4",
|
2018-11-11 19:31:32 +00:00
|
|
|
"compression": "^1.7.3",
|
2018-06-23 17:51:26 +01:00
|
|
|
"cross-env": "^5.2.0",
|
2018-12-16 01:13:27 +00:00
|
|
|
"css-loader": "^2.0.1",
|
2018-09-23 15:55:06 +01:00
|
|
|
"emoji-regex": "^7.0.1",
|
2018-12-11 15:31:48 +00:00
|
|
|
"encoding": "^0.1.12",
|
2018-06-03 23:30:37 +01:00
|
|
|
"escape-html": "^1.0.3",
|
2018-09-23 05:59:37 +01:00
|
|
|
"esm": "^3.0.84",
|
2018-12-04 14:44:13 +00:00
|
|
|
"events-light": "^1.0.5",
|
2018-11-05 05:30:07 +00:00
|
|
|
"express": "^4.16.4",
|
2018-06-03 23:30:37 +01:00
|
|
|
"file-api": "^0.10.4",
|
2018-12-15 10:06:12 +00:00
|
|
|
"file-drop-element": "0.0.9",
|
2018-11-04 22:52:51 +00:00
|
|
|
"form-data": "^2.3.3",
|
2018-09-23 15:55:06 +01:00
|
|
|
"glob": "^7.1.3",
|
2018-11-22 04:53:43 +00:00
|
|
|
"helmet": "^3.15.0",
|
2018-08-30 03:03:12 +01:00
|
|
|
"idb-keyval": "^3.1.0",
|
2018-08-18 06:26:36 +01:00
|
|
|
"indexeddb-getall-shim": "^1.3.5",
|
2018-11-04 22:52:51 +00:00
|
|
|
"intersection-observer": "^0.5.1",
|
2018-12-06 05:34:30 +00:00
|
|
|
"localstorage-memory": "^1.0.3",
|
2018-09-23 07:08:17 +01:00
|
|
|
"lodash-es": "^4.17.11",
|
2018-06-03 23:30:37 +01:00
|
|
|
"lodash-webpack-plugin": "^0.11.5",
|
|
|
|
"mkdirp": "^0.5.1",
|
2018-11-22 04:53:43 +00:00
|
|
|
"node-fetch": "^2.3.0",
|
2018-12-13 07:46:51 +00:00
|
|
|
"node-sass": "^4.11.0",
|
2018-11-25 05:21:42 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2018-06-03 23:30:37 +01:00
|
|
|
"p-any": "^1.1.0",
|
2018-08-16 18:23:26 +01:00
|
|
|
"page-lifecycle": "^0.1.1",
|
2018-06-03 23:30:37 +01:00
|
|
|
"performance-now": "^2.1.0",
|
2018-11-04 22:52:51 +00:00
|
|
|
"pify": "^4.0.1",
|
2018-11-11 17:47:00 +00:00
|
|
|
"quick-lru": "^2.0.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"requestidlecallback": "^0.3.0",
|
2018-12-08 19:21:54 +00:00
|
|
|
"rollup": "^0.67.4",
|
|
|
|
"rollup-plugin-replace": "^2.1.0",
|
|
|
|
"rollup-plugin-terser": "^3.0.0",
|
2018-12-14 05:32:12 +00:00
|
|
|
"sapper": "github:nolanlawson/sapper#nolan/sw-index-html-built",
|
2018-06-03 23:30:37 +01:00
|
|
|
"serve-static": "^1.13.2",
|
|
|
|
"stringz": "^1.0.0",
|
2018-11-13 01:34:12 +00:00
|
|
|
"svelte": "^2.15.3",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-extras": "^2.0.2",
|
2018-09-23 06:18:45 +01:00
|
|
|
"svelte-loader": "^2.11.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"svelte-transitions": "^1.2.0",
|
2018-09-23 06:05:50 +01:00
|
|
|
"svgo": "^1.1.1",
|
2018-09-23 07:08:23 +01:00
|
|
|
"terser-webpack-plugin": "^1.1.0",
|
2018-06-03 23:30:37 +01:00
|
|
|
"tiny-queue": "^0.2.1",
|
2018-12-11 15:31:48 +00:00
|
|
|
"uuid": "^3.3.2",
|
2018-06-03 23:30:37 +01:00
|
|
|
"web-animations-js": "^2.3.1",
|
2018-12-13 07:46:51 +00:00
|
|
|
"webpack": "^4.27.1",
|
2018-11-05 00:39:10 +00:00
|
|
|
"webpack-bundle-analyzer": "^3.0.3"
|
2018-01-06 23:51:25 +00:00
|
|
|
},
|
2018-03-29 02:46:46 +01:00
|
|
|
"devDependencies": {
|
2018-11-20 08:01:23 +00:00
|
|
|
"assert": "^1.4.1",
|
2018-11-12 00:37:10 +00:00
|
|
|
"eslint-plugin-html": "^5.0.0",
|
2018-11-20 08:01:23 +00:00
|
|
|
"mocha": "^5.2.0",
|
2018-12-13 07:46:51 +00:00
|
|
|
"now": "^12.1.12",
|
2018-09-23 15:55:06 +01:00
|
|
|
"standard": "^12.0.1",
|
2018-11-22 04:53:43 +00:00
|
|
|
"testcafe": "^0.23.2"
|
2018-03-29 02:46:46 +01:00
|
|
|
},
|
2018-01-06 23:51:25 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">= 8"
|
2018-02-09 06:29:29 +00:00
|
|
|
},
|
|
|
|
"standard": {
|
|
|
|
"globals": [
|
|
|
|
"fetch",
|
|
|
|
"IDBKeyRange",
|
|
|
|
"IDBObjectStore",
|
|
|
|
"indexedDB",
|
|
|
|
"requestAnimationFrame",
|
|
|
|
"requestIdleCallback",
|
|
|
|
"location",
|
|
|
|
"localStorage",
|
|
|
|
"IntersectionObserver",
|
2018-02-09 06:31:05 +00:00
|
|
|
"URL",
|
2018-02-11 17:37:13 +00:00
|
|
|
"Event",
|
|
|
|
"history",
|
|
|
|
"performance",
|
2018-02-09 06:31:05 +00:00
|
|
|
"self",
|
|
|
|
"caches",
|
|
|
|
"__routes__",
|
|
|
|
"__shell__",
|
2018-02-18 23:30:42 +00:00
|
|
|
"__assets__",
|
2018-02-20 02:24:22 +00:00
|
|
|
"test",
|
2018-02-26 04:45:11 +00:00
|
|
|
"fixture",
|
2018-03-03 01:54:38 +00:00
|
|
|
"Element",
|
|
|
|
"FormData",
|
|
|
|
"atob",
|
|
|
|
"btoa",
|
2018-03-21 16:38:20 +00:00
|
|
|
"Blob",
|
2018-04-20 05:38:01 +01:00
|
|
|
"Element",
|
2018-10-06 21:06:10 +01:00
|
|
|
"Image",
|
2018-11-21 08:33:46 +00:00
|
|
|
"NotificationEvent",
|
2018-11-25 09:20:58 +00:00
|
|
|
"NodeList",
|
2018-12-02 19:22:18 +00:00
|
|
|
"DOMParser",
|
|
|
|
"CSS"
|
2018-02-09 06:29:29 +00:00
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"dist",
|
2018-12-11 15:31:48 +00:00
|
|
|
"src/routes/_utils/asyncModules.js",
|
2018-12-16 01:13:46 +00:00
|
|
|
"src/routes/_utils/asyncPolyfills.js",
|
2018-12-11 15:31:48 +00:00
|
|
|
"src/routes/_components/dialog/asyncDialogs.js"
|
2018-02-09 06:29:29 +00:00
|
|
|
]
|
2018-03-06 04:29:49 +00:00
|
|
|
},
|
2018-03-29 02:22:30 +01:00
|
|
|
"esm": {
|
|
|
|
"mode": "auto",
|
2018-03-06 04:51:42 +00:00
|
|
|
"cjs": "vars"
|
2018-03-12 03:37:24 +00:00
|
|
|
},
|
|
|
|
"now": {
|
2018-04-12 06:22:20 +01:00
|
|
|
"type": "npm",
|
2018-03-12 03:37:24 +00:00
|
|
|
"env": {
|
|
|
|
"NODE_ENV": "production"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"bin",
|
2018-12-11 15:31:48 +00:00
|
|
|
"inline-script.js",
|
|
|
|
"original-static",
|
2018-03-12 03:37:24 +00:00
|
|
|
"scss",
|
2018-12-11 15:31:48 +00:00
|
|
|
"src",
|
|
|
|
"static",
|
2018-03-12 03:37:24 +00:00
|
|
|
"package.json",
|
|
|
|
"package-lock.json",
|
2018-12-11 15:31:48 +00:00
|
|
|
"webpack",
|
|
|
|
"webpack.config.js"
|
2018-05-28 16:26:33 +01:00
|
|
|
],
|
|
|
|
"engines": {
|
|
|
|
"node": "^8.0.0"
|
|
|
|
}
|
2018-04-14 17:40:58 +01:00
|
|
|
},
|
|
|
|
"greenkeeper": {
|
|
|
|
"ignore": [
|
2018-11-21 08:33:46 +00:00
|
|
|
"sapper"
|
2018-04-14 17:40:58 +01:00
|
|
|
]
|
2018-06-23 17:51:37 +01:00
|
|
|
},
|
|
|
|
"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-06 23:51:25 +00:00
|
|
|
}
|