2019-06-21 16:18:19 +00:00
|
|
|
{
|
2019-06-24 19:26:29 +00:00
|
|
|
"name": "@fraction/oasis",
|
2020-03-10 23:57:46 +00:00
|
|
|
"version": "2.14.0",
|
2019-12-28 00:28:36 +00:00
|
|
|
"description": "friendly neighborhood scuttlebutt interface",
|
2020-01-23 20:09:54 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+ssh://git@github.com/fraction/oasis.git"
|
|
|
|
},
|
2019-09-27 00:19:18 +00:00
|
|
|
"license": "AGPL-3.0",
|
2019-12-28 00:28:36 +00:00
|
|
|
"author": "Christian Bundy <christianbundy@fraction.io>",
|
2020-01-08 16:37:52 +00:00
|
|
|
"main": "src/index.js",
|
2019-12-28 00:28:36 +00:00
|
|
|
"bin": {
|
2020-01-23 20:09:54 +00:00
|
|
|
"oasis": "src/index.js"
|
2019-12-28 00:28:36 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-01-08 16:37:52 +00:00
|
|
|
"dev": "nodemon --inspect src/index.js --debug --no-open",
|
2020-01-22 00:22:19 +00:00
|
|
|
"fix": "common-good fix",
|
2020-01-08 16:37:52 +00:00
|
|
|
"start": "node src/index.js",
|
2020-03-24 19:17:09 +00:00
|
|
|
"test": "common-good check --dependency-check-suffix '-i changelog-version -i mkdirp -i nodemon -i stylelint-config-recommended'",
|
2020-01-16 19:53:01 +00:00
|
|
|
"preversion": "npm test",
|
|
|
|
"version": "changelog-version && git add CHANGELOG.md"
|
2019-12-28 00:28:36 +00:00
|
|
|
},
|
2019-06-21 16:18:19 +00:00
|
|
|
"dependencies": {
|
2019-10-16 04:00:03 +00:00
|
|
|
"@fraction/base16-css": "^1.1.0",
|
2020-03-09 21:34:18 +00:00
|
|
|
"@fraction/flotilla": "^4.0.1",
|
2019-06-28 20:55:05 +00:00
|
|
|
"debug": "^4.1.1",
|
2020-02-22 00:59:51 +00:00
|
|
|
"env-paths": "^2.2.0",
|
2020-02-11 20:48:50 +00:00
|
|
|
"highlight.js": "^9.18.1",
|
2019-06-27 20:36:43 +00:00
|
|
|
"hyperaxe": "^1.3.0",
|
2020-01-31 23:04:13 +00:00
|
|
|
"is-svg": "^4.2.1",
|
2019-06-23 18:46:22 +00:00
|
|
|
"koa": "^2.7.0",
|
2019-06-26 00:53:12 +00:00
|
|
|
"koa-body": "^4.1.0",
|
2019-06-25 16:52:34 +00:00
|
|
|
"koa-mount": "^4.0.0",
|
2019-06-23 18:46:22 +00:00
|
|
|
"koa-router": "^7.4.0",
|
2019-06-25 03:10:13 +00:00
|
|
|
"koa-static": "^5.0.0",
|
2019-06-23 18:46:22 +00:00
|
|
|
"lodash": "^4.17.11",
|
2020-03-04 00:13:56 +00:00
|
|
|
"markdown-it": "^8.4.2",
|
2019-11-15 20:16:26 +00:00
|
|
|
"open": "7.0.0",
|
2019-06-23 18:46:22 +00:00
|
|
|
"pretty-ms": "^5.0.0",
|
2019-10-01 00:46:04 +00:00
|
|
|
"pull-paramap": "^1.2.2",
|
2019-12-06 19:31:35 +00:00
|
|
|
"pull-sort": "^1.0.2",
|
2019-06-23 18:46:22 +00:00
|
|
|
"pull-stream": "^3.6.12",
|
2019-06-29 19:56:59 +00:00
|
|
|
"require-style": "^1.1.0",
|
2020-01-24 02:27:06 +00:00
|
|
|
"sharp": "^0.23.0",
|
2020-02-11 20:48:50 +00:00
|
|
|
"ssb-client": "^4.9.0",
|
|
|
|
"ssb-config": "^3.4.4",
|
2020-03-09 21:34:18 +00:00
|
|
|
"ssb-markdown": "^6.0.4",
|
2020-02-19 22:35:40 +00:00
|
|
|
"ssb-mentions": "^0.5.2",
|
2019-06-27 22:07:09 +00:00
|
|
|
"ssb-msgs": "^5.2.0",
|
2019-06-28 16:13:35 +00:00
|
|
|
"ssb-ref": "^2.13.9",
|
2020-01-26 20:54:56 +00:00
|
|
|
"ssb-tangle": "^1.0.1",
|
2019-11-13 04:48:37 +00:00
|
|
|
"ssb-thread-schema": "^1.1.1",
|
2020-03-09 21:34:18 +00:00
|
|
|
"yargs": "^15.3.0"
|
2019-06-24 19:13:16 +00:00
|
|
|
},
|
2019-06-24 22:00:10 +00:00
|
|
|
"devDependencies": {
|
2020-01-16 19:53:01 +00:00
|
|
|
"changelog-version": "^1.0.1",
|
2020-02-18 18:44:36 +00:00
|
|
|
"common-good": "^1.1.20",
|
2020-01-04 05:06:08 +00:00
|
|
|
"mkdirp": "^0.5.1",
|
2019-12-12 17:27:38 +00:00
|
|
|
"nodemon": "^2.0.2",
|
2020-01-22 00:22:19 +00:00
|
|
|
"stylelint-config-recommended": "^3.0.0"
|
2019-06-24 22:00:10 +00:00
|
|
|
},
|
2019-12-28 00:28:36 +00:00
|
|
|
"optionalDependencies": {
|
|
|
|
"sharp": "^0.23.0"
|
2020-01-23 20:09:54 +00:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/fraction/oasis/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/fraction/oasis#readme",
|
|
|
|
"directories": {
|
|
|
|
"doc": "docs"
|
|
|
|
},
|
2020-01-31 18:51:18 +00:00
|
|
|
"keywords": [],
|
|
|
|
"engines": {
|
|
|
|
"node": "^10.0.0 || >=12.0.0"
|
|
|
|
}
|
2019-06-21 16:18:19 +00:00
|
|
|
}
|