-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
78 lines (78 loc) · 2.3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "joplin-plugin-backup",
"version": "1.4.2",
"scripts": {
"dist": "webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
"prepare": "npm run dist && husky install",
"update": "npm install -g generator-joplin && yo joplin --node-package-manager npm --update --force",
"release": "npm test && node ./node_modules/joplinplugindevtools/dist/createRelease.js",
"preRelease": "npm test && node ./node_modules/joplinplugindevtools/dist/createRelease.js --prerelease",
"gitRelease": "node ./node_modules/joplinplugindevtools/dist/createRelease.js --upload",
"gitPreRelease": "node ./node_modules/joplinplugindevtools/dist/createRelease.js --upload --prerelease",
"test": "jest",
"updateVersion": "webpack --env joplin-plugin-config=updateVersion"
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^18.7.13",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-when": "^3.3.1",
"joplinplugindevtools": "^1.0.16",
"lint-staged": "^11.0.0",
"mime": "^2.5.2",
"on-build-webpack": "^0.1.0",
"prettier": "2.3.0",
"tar": "^6.1.11",
"ts-jest": "^27.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"yargs": "^16.2.0",
"@joplin/lib": "~2.9"
},
"browser": {
"fs": false,
"child_process": false
},
"dependencies": {
"@types/i18n": "^0.13.6",
"7zip-bin": "^5.1.1",
"electron-log": "^4.3.1",
"i18n": "^0.15.1",
"moment": "^2.29.1",
"node-7z": "^2.1.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"^api$": "<rootDir>/node_modules/joplinplugindevtools/dist/apiMock.js",
"^api/types$": "<rootDir>/api/types"
}
},
"files": [
"publish"
]
}