forked from CalebJohn/joplin-rich-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "joplin-plugin-rich-markdown",
"version": "0.8.1",
"scripts": {
"dist": "webpack --joplin-plugin-config buildMain && webpack --joplin-plugin-config buildExtraScripts && webpack --joplin-plugin-config createArchive",
"prepare": "npm run dist",
"update": "npm install -g generator-joplin && yo joplin --update",
"preversion": "npm run test",
"updatetags": "LOGS=$(git log $(git describe --tags --abbrev=0 HEAD~1)..HEAD~1 --oneline) && git tag -fam \"v$npm_package_version\n\n$LOGS\" v$npm_package_version && git tag -fa v$npm_package_version",
"postversion": "npm run updatetags && git push origin main --tags",
"version": "sed -i '/\\\"version\\\": \\\"/s/[^\\\"]*\\\",/'\"$npm_package_version\\\",/\" src/manifest.json && git add src/manifest.json",
"test": "jest"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"browser": {
"child_process": false,
"fs": false
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^14.0.14",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^6.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jest": "^27.0.6",
"on-build-webpack": "^0.1.0",
"tar": "^6.0.5",
"ts-jest": "^27.0.3",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"yargs": "^16.2.0"
},
"dependencies": {
"@joplin/lib": "^2.1.1",
"opener": "^1.5.2"
}
}