1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/CliClient/package.json

63 lines
1.9 KiB
JSON
Raw Normal View History

2017-06-06 00:00:02 +02:00
{
2017-07-12 22:39:47 +02:00
"name": "joplin",
2017-06-29 22:52:52 +02:00
"description": "CLI client for Joplin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/laurent22/joplin"
},
"url": "git://github.com/laurent22/joplin.git",
2017-07-31 21:47:58 +02:00
"version": "0.9.0",
2017-06-25 18:30:44 +02:00
"bin": {
"joplin": "./main_launcher.js"
2017-06-25 18:30:44 +02:00
},
2017-06-09 00:24:40 +02:00
"dependencies": {
"app-module-path": "^2.2.0",
2017-06-29 22:52:52 +02:00
"babel-plugin-transform-runtime": "^6.23.0",
"cache-require-paths": "^0.3.0",
"follow-redirects": "^1.2.4",
2017-06-09 00:24:40 +02:00
"form-data": "^2.1.4",
2017-06-11 23:11:14 +02:00
"fs-extra": "^3.0.1",
2017-06-09 00:24:40 +02:00
"jssha": "^2.3.0",
2017-07-12 22:39:47 +02:00
"levenshtein": "^1.0.5",
2017-06-29 22:52:52 +02:00
"lodash": "^4.17.4",
"md5": "^2.2.1",
2017-06-09 00:24:40 +02:00
"moment": "^2.18.1",
"node-fetch": "^1.7.1",
"node-persist": "^2.1.0",
2017-07-19 21:15:55 +02:00
"os-tmpdir": "^1.0.2",
2017-06-09 00:24:40 +02:00
"promise": "^7.1.1",
2017-07-17 21:37:59 +02:00
"proper-lockfile": "^2.0.1",
2017-06-15 23:17:56 +02:00
"query-string": "4.3.4",
2017-06-09 00:24:40 +02:00
"sax": "^1.2.2",
2017-06-22 23:52:27 +02:00
"server-destroy": "^1.0.1",
2017-06-29 22:52:52 +02:00
"source-map-support": "^0.4.15",
2017-06-11 23:11:14 +02:00
"sprintf-js": "^1.1.1",
"sqlite3": "^3.1.8",
2017-07-12 22:39:47 +02:00
"string-padding": "^1.0.2",
2017-06-09 00:24:40 +02:00
"string-to-stream": "^1.1.0",
2017-06-22 21:44:38 +02:00
"tcp-port-used": "^0.1.2",
2017-06-11 23:11:14 +02:00
"uuid": "^3.0.1",
2017-08-03 19:48:14 +02:00
"yargs-parser": "^7.0.0"
2017-06-09 00:24:40 +02:00
},
"devDependencies": {
"babel-changed": "^7.0.0",
"babel-cli": "^6.24.1",
2017-06-15 23:17:56 +02:00
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-regenerator": "^6.1.4",
2017-06-25 17:17:40 +02:00
"babel-polyfill": "^6.1.4",
2017-06-18 01:49:52 +02:00
"babel-preset-env": "^1.5.1",
2017-06-15 23:17:56 +02:00
"babel-preset-es2015": "^6.1.4",
2017-06-18 01:49:52 +02:00
"babel-preset-react": "^6.24.1",
"gettext-parser": "^1.2.2",
2017-07-28 00:59:34 +02:00
"jasmine": "^2.6.0",
"word-wrap": "^1.2.3"
2017-06-09 00:24:40 +02:00
},
"scripts": {
2017-06-11 23:11:14 +02:00
"babelbuild": "babel app -d build",
2017-06-24 20:06:28 +02:00
"build": "babel-changed app -d build --source-maps && babel-changed app/lib/models -d build/lib/models --source-maps && babel-changed app/lib/services -d build/lib/services --source-maps",
2017-06-13 22:58:17 +02:00
"clean": "babel-changed --reset",
2017-06-14 00:39:45 +02:00
"test": "babel-changed tests -d tests-build --source-maps && jasmine"
2017-06-09 00:24:40 +02:00
}
2017-06-06 00:00:02 +02:00
}