mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
42 lines
999 B
JSON
42 lines
999 B
JSON
{
|
|
"name": "generator-joplin",
|
|
"version": "3.0.0",
|
|
"description": "Scaffolds out a new Joplin plugin",
|
|
"homepage": "https://github.com/laurent22/joplin/tree/dev/packages/generator-joplin",
|
|
"author": {
|
|
"name": "Laurent Cozic",
|
|
"url": "https://github.com/laurent22/joplin/tree/dev/packages/generator-joplin"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test-ci": "yarn test",
|
|
"updateCategories": "ts-node tools/updateCategories.ts"
|
|
},
|
|
"files": [
|
|
"generators"
|
|
],
|
|
"main": "generators/index.js",
|
|
"keywords": [
|
|
"joplin",
|
|
"yeoman-generator"
|
|
],
|
|
"engines": {
|
|
"npm": ">= 4.0.0"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "2.4.2",
|
|
"slugify": "1.6.6",
|
|
"yeoman-generator": "5.10.0",
|
|
"yosay": "2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@joplin/lib": "~3.0",
|
|
"@joplin/tools": "~3.0",
|
|
"jest": "29.7.0",
|
|
"ts-node": "10.9.2"
|
|
},
|
|
"repository": "https://github.com/laurent22/generator-joplin",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true
|
|
}
|