lacona-notes
Version:
Lacona Addon for opening and creating Apple Notes (using Notes.app)
56 lines (55 loc) • 1.67 kB
JSON
{
"name": "lacona-notes",
"version": "1.1.0",
"description": "Lacona Addon for opening and creating Apple Notes (using Notes.app)",
"main": "lib/index.js",
"lacona": {
"title": "Notes",
"description": "Allow Lacona to create and add to Apple Notes, using Notes.app.",
"iconURL": "https://raw.githubusercontent.com/brandonhorst/lacona-notes/master/icon.png",
"examples": [
"create [Shopping List](note) in [Personal](note folder)",
"add [Eggs](line) to [Shopping List](note)"
],
"engine": ">=1.1.0"
},
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"lacona",
"lacona-addon"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brandonhorst/lacona-notes.git"
},
"dependencies": {
"elliptical": "^2.0.0",
"lacona-api": "^1.4.0",
"lacona-phrases": "^1.0.1",
"lacona-source-helpers": "^1.4.0",
"lodash": "^4.16.1"
},
"devDependencies": {
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-cli": "^6.14.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015-node": "^6.1.1",
"rimraf": "^2.5.4"
},
"babel": {
"presets": [
"es2015-node"
],
"plugins": [
"transform-async-to-generator",
"syntax-async-functions",
"transform-react-jsx"
]
}
}