mirror of
https://github.com/foambubble/foam.git
synced 2026-04-24 03:01:01 -04:00
Commands refactoring: * moved commands in own directory * split one command per file * added "update graph" command * renamed date-snippet file (before it included a combination of commands and snippet completion) Also some test cleanup: * made tests about note renaming/sync more reliable * improved clean up between tests * improved reporting in test runs * fixed exit on failure behavior to surface exit code to CI
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "foam",
|
|
"version": "0.2.0",
|
|
"description": "Foam",
|
|
"repository": "git@github.com:foambubble/foam.git",
|
|
"license": "MIT",
|
|
"private": "true",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"vscode:package-extension": "yarn workspace foam-vscode package-extension",
|
|
"vscode:install-extension": "yarn workspace foam-vscode install-extension",
|
|
"vscode:publish-extension": "yarn workspace foam-vscode publish-extension",
|
|
"reset": "yarn && yarn clean && yarn build",
|
|
"clean": "lerna run clean",
|
|
"build": "lerna run build",
|
|
"test": "yarn workspace foam-vscode test",
|
|
"lint": "lerna run lint",
|
|
"watch": "lerna run watch --concurrency 20 --stream"
|
|
},
|
|
"devDependencies": {
|
|
"all-contributors-cli": "^6.16.1",
|
|
"lerna": "^3.22.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn lint"
|
|
}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"dependencies": {}
|
|
} |