mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 20:09:57 +00:00
a930411cfd
* fix breaking bug in image tiddler attachment * fix comments * fix code format * refactor processIncomingTiddler flow * remove whitespaces after if statements * refactor attachment_blob persistence flow * refactor process tiddler to support different attachments * add tests for attachment * add more attachement test cases * working on adding instanbul for test coverage report * code coverage report generation * remove unnecessary packages * fix comments * handle directory creation if doesn't exist for test store * resolve issue with CI tests failure
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "tiddlywiki",
|
|
"preferGlobal": "true",
|
|
"version": "5.3.6-prerelease",
|
|
"author": "Jeremy Ruston <jeremy@jermolene.com>",
|
|
"description": "a non-linear personal web notebook",
|
|
"contributors": [
|
|
{
|
|
"name": "Jeremy Ruston",
|
|
"email": "jeremy@jermolene.com"
|
|
}
|
|
],
|
|
"bin": {
|
|
"tiddlywiki": "./tiddlywiki.js"
|
|
},
|
|
"main": "./boot/boot.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TiddlyWiki/TiddlyWiki5.git"
|
|
},
|
|
"keywords": [
|
|
"tiddlywiki",
|
|
"tiddlywiki5",
|
|
"wiki"
|
|
],
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0"
|
|
},
|
|
"license": "BSD",
|
|
"engines": {
|
|
"node": ">=0.8.2"
|
|
},
|
|
"scripts": {
|
|
"start": "node ./tiddlywiki.js ./editions/multiwikiserver --mws-load-plugin-bags --build load-mws-demo-data --mws-listen",
|
|
"build:test-edition": "node ./tiddlywiki.js ./editions/test --verbose --version --build index",
|
|
"test:multiwikiserver-edition": "node ./tiddlywiki.js ./editions/multiwikiserver/ --build load-mws-demo-data --mws-listen --mws-test-server http://127.0.0.1:8080/ --quit",
|
|
"test": "npm run build:test-edition && npm run test:multiwikiserver-edition",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@playwright/test": "^1.46.1",
|
|
"better-sqlite3": "^9.4.3",
|
|
"node-sqlite3-wasm": "^0.8.10",
|
|
"playwright": "^1.46.1"
|
|
}
|
|
}
|