-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "joplin-plugin-templates",
"version": "2.4.0",
"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",
"lint": "eslint '{src,tests}/**/*.{ts,json}'",
"release": "standard-version",
"test": "jest",
"coverage": "jest --coverage",
"announce": "node scripts/announceRelease.js",
"postpublish": "npm run announce"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
},
"license": "MIT",
"keywords": [
"joplin-plugin"
],
"browser": {
"child_process": false,
"fs": false
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"axios": "^0.21.1",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^6.1.0",
"dedent": "^0.7.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jest": "^27.0.6",
"on-build-webpack": "^0.1.0",
"standard-version": "^9.3.1",
"tar": "^6.0.5",
"ts-jest": "^27.0.4",
"ts-loader": "^7.0.5",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"yargs": "^16.2.0"
},
"dependencies": {
"front-matter": "^4.0.2",
"handlebars": "^4.7.7",
"html-entities": "^2.3.2",
"moment": "^2.29.1",
"open": "^8.2.1"
}
}