1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Add dependencies to package.json

This is needed in order for our CI to be able to run the tests
This commit is contained in:
Jeremy Ruston 2024-01-02 14:47:32 +00:00
parent 12d84c43c9
commit f8f8319324

View File

@ -26,7 +26,6 @@
"devDependencies": { "devDependencies": {
"eslint": "^7.32.0" "eslint": "^7.32.0"
}, },
"bundleDependencies": [],
"license": "BSD", "license": "BSD",
"engines": { "engines": {
"node": ">=0.8.2" "node": ">=0.8.2"
@ -36,5 +35,8 @@
"test": "node ./tiddlywiki.js ./editions/test --verbose --version --build index", "test": "node ./tiddlywiki.js ./editions/test --verbose --version --build index",
"lint:fix": "eslint . --fix", "lint:fix": "eslint . --fix",
"lint": "eslint ." "lint": "eslint ."
},
"dependencies": {
"better-sqlite3": "^9.2.2"
} }
} }