2017-11-23 18:14:38 +00:00
|
|
|
{
|
2020-11-07 15:59:37 +00:00
|
|
|
"name": "@joplin/tools",
|
2022-10-12 15:45:50 +01:00
|
|
|
"version": "2.9.1",
|
2020-03-01 11:42:44 +00:00
|
|
|
"description": "Various tools for Joplin",
|
2017-11-23 18:14:38 +00:00
|
|
|
"main": "index.js",
|
2020-03-01 11:42:44 +00:00
|
|
|
"author": "Laurent Cozic",
|
2020-11-05 16:58:23 +00:00
|
|
|
"scripts": {
|
2021-01-04 15:01:45 +00:00
|
|
|
"updateIgnored": "gulp updateIgnoredTypeScriptBuild",
|
|
|
|
"tsc": "tsc --project tsconfig.json",
|
2021-12-21 12:43:12 +01:00
|
|
|
"watch": "tsc --watch --preserveWatchOutput --project tsconfig.json",
|
2021-09-23 16:48:26 +01:00
|
|
|
"test": "jest --verbose=false",
|
2021-12-20 16:08:43 +01:00
|
|
|
"test-ci": "yarn test"
|
2020-11-05 16:58:23 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2020-03-01 11:42:44 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/laurent22/joplin.git"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
2017-11-23 18:14:38 +00:00
|
|
|
"dependencies": {
|
2022-10-12 15:45:50 +01:00
|
|
|
"@joplin/lib": "^2.9.1",
|
|
|
|
"@joplin/renderer": "^2.9.1",
|
2022-11-05 17:13:55 +00:00
|
|
|
"@types/node-fetch": "2.6.2",
|
2022-11-29 05:01:25 +00:00
|
|
|
"@types/yargs": "17.0.15",
|
2022-11-07 10:01:27 +00:00
|
|
|
"dayjs": "1.11.6",
|
2022-11-05 13:09:41 +00:00
|
|
|
"execa": "4.1.0",
|
2022-11-30 09:34:27 +00:00
|
|
|
"fs-extra": "11.1.0",
|
2022-11-11 14:20:16 +00:00
|
|
|
"gettext-parser": "6.0.0",
|
2022-11-12 12:20:53 +00:00
|
|
|
"glob": "8.0.3",
|
2022-11-12 10:23:00 +00:00
|
|
|
"markdown-it": "13.0.1",
|
2022-11-13 10:44:53 +00:00
|
|
|
"md5-file": "5.0.0",
|
2022-11-06 12:37:47 +00:00
|
|
|
"moment": "2.29.4",
|
2022-11-12 12:28:12 +00:00
|
|
|
"mustache": "4.2.0",
|
2022-11-15 09:10:41 +00:00
|
|
|
"node-fetch": "2.6.7",
|
2022-11-05 13:09:41 +00:00
|
|
|
"relative": "3.0.2",
|
|
|
|
"request": "2.88.2",
|
2022-11-05 18:51:21 +00:00
|
|
|
"sharp": "0.31.2",
|
2022-11-05 13:09:41 +00:00
|
|
|
"source-map-support": "0.5.21",
|
2022-11-15 08:16:38 +00:00
|
|
|
"uri-template": "2.0.0",
|
2022-11-14 22:39:46 +00:00
|
|
|
"yargs": "17.6.2"
|
2020-11-05 16:58:23 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-22 18:16:57 +00:00
|
|
|
"@joplin/fork-htmlparser2": "^4.1.41",
|
2022-11-07 07:50:06 +00:00
|
|
|
"@rmp135/sql-ts": "1.15.1",
|
2022-11-05 14:47:55 +00:00
|
|
|
"@types/fs-extra": "9.0.13",
|
2022-11-15 09:21:45 +00:00
|
|
|
"@types/jest": "29.2.3",
|
2022-11-24 02:35:05 +00:00
|
|
|
"@types/mustache": "4.2.2",
|
2022-11-05 18:52:00 +00:00
|
|
|
"@types/node": "18.11.9",
|
2022-11-07 19:56:25 +00:00
|
|
|
"gettext-extractor": "3.6.0",
|
2022-11-05 14:47:55 +00:00
|
|
|
"gulp": "4.0.2",
|
2022-11-22 18:16:57 +00:00
|
|
|
"html-entities": "1.4.0",
|
2022-11-15 09:21:45 +00:00
|
|
|
"jest": "29.3.1",
|
2022-11-05 14:47:55 +00:00
|
|
|
"rss": "1.2.2",
|
2022-11-11 04:43:05 +00:00
|
|
|
"sass": "1.56.1",
|
2022-11-13 08:38:59 +00:00
|
|
|
"sqlite3": "5.1.2",
|
2022-11-17 16:23:13 +00:00
|
|
|
"typescript": "4.9.3"
|
2020-12-14 14:55:31 +00:00
|
|
|
},
|
2021-09-29 16:22:20 +01:00
|
|
|
"gitHead": "eb4b0e64eab40a51b0895d3a40a9d8c3cb7b1b14"
|
2017-11-23 18:14:38 +00:00
|
|
|
}
|