oasis/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2019-06-21 16:18:19 +00:00
{
2019-06-24 19:26:29 +00:00
"name": "@fraction/oasis",
2019-11-15 18:22:18 +00:00
"version": "2.7.0",
2019-06-23 18:46:22 +00:00
"main": "index.js",
"author": "Christian Bundy <christianbundy@fraction.io>",
"license": "AGPL-3.0",
2019-06-21 16:18:19 +00:00
"dependencies": {
"@fraction/base16-css": "^1.1.0",
2019-11-15 19:42:32 +00:00
"@fraction/flotilla": "^2.0.0",
2019-06-28 20:55:05 +00:00
"debug": "^4.1.1",
2019-11-13 04:48:37 +00:00
"highlight.js": "^9.16.2",
"hyperaxe": "^1.3.0",
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",
"koa-static": "^5.0.0",
2019-06-23 18:46:22 +00:00
"lodash": "^4.17.11",
2019-06-25 16:59:59 +00:00
"open": "^6.3.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-06-23 18:46:22 +00:00
"pull-stream": "^3.6.12",
"require-style": "^1.1.0",
"sharp": "^0.23.0",
2019-06-23 18:46:22 +00:00
"ssb-client": "^4.7.7",
2019-11-13 04:48:37 +00:00
"ssb-config": "^3.4.3",
2019-10-31 22:45:10 +00:00
"ssb-markdown": "^6.0.0",
"ssb-mentions": "^0.5.0",
"ssb-msgs": "^5.2.0",
"ssb-ref": "^2.13.9",
2019-11-13 04:48:37 +00:00
"ssb-thread-schema": "^1.1.1",
"yargs": "^14.2.1"
},
2019-06-24 19:26:29 +00:00
"bin": {
"oasis": "./index.js"
},
"description": "friendly neighborhood scuttlebutt interface",
"repository": "git@github.com:fraction/oasis.git",
"devDependencies": {
2019-11-13 04:48:37 +00:00
"cspell": "^4.0.33",
2019-10-31 22:45:10 +00:00
"dependency-check": "^4.1.0",
2019-09-16 20:43:43 +00:00
"husky": "^3.0.5",
2019-06-28 20:55:05 +00:00
"nodemon": "^1.19.1",
2019-10-31 22:45:10 +00:00
"standard": "^14.3.0",
"stylelint": "^11.0.0",
"stylelint-config-standard": "^19.0.0"
},
"scripts": {
2019-09-16 22:50:03 +00:00
"start": "node index.js",
"debug": "nodemon --inspect index.js --debug",
"fix": "standard --fix && stylelint --fix src/assets/*.css",
"test": "standard && dependency-check ./package.json --unused --no-dev --ignore-module highlight.js --ignore-module @fraction/base16-css && cspell --no-summary '**/*.{js,md}' && stylelint src/assets/*.css",
2019-09-16 22:50:03 +00:00
"preversion": "npm test"
}
2019-06-21 16:18:19 +00:00
}