1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-20 18:48:28 +02:00
joplin/CliClient/package.json

58 lines
1.7 KiB
JSON
Raw Normal View History

2017-06-05 23:00:02 +01:00
{
2017-07-12 21:39:47 +01:00
"name": "joplin",
2017-06-29 21:52:52 +01: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-16 17:06:05 +01:00
"version": "0.8.44",
2017-06-25 17:30:44 +01:00
"bin": {
"joplin": "./main_launcher.js"
2017-06-25 17:30:44 +01:00
},
2017-06-08 23:24:40 +01:00
"dependencies": {
"app-module-path": "^2.2.0",
2017-06-29 21:52:52 +01:00
"babel-plugin-transform-runtime": "^6.23.0",
"follow-redirects": "^1.2.4",
2017-06-08 23:24:40 +01:00
"form-data": "^2.1.4",
2017-06-11 22:11:14 +01:00
"fs-extra": "^3.0.1",
2017-06-08 23:24:40 +01:00
"jssha": "^2.3.0",
2017-07-12 21:39:47 +01:00
"levenshtein": "^1.0.5",
2017-06-29 21:52:52 +01:00
"lodash": "^4.17.4",
2017-06-11 22:11:14 +01:00
"mkdirp": "^0.5.1",
2017-06-08 23:24:40 +01:00
"moment": "^2.18.1",
2017-06-12 20:46:49 +00:00
"moment-timezone": "^0.5.13",
2017-06-08 23:24:40 +01:00
"node-fetch": "^1.7.1",
"promise": "^7.1.1",
2017-06-15 22:17:56 +01:00
"query-string": "4.3.4",
2017-06-08 23:24:40 +01:00
"sax": "^1.2.2",
2017-06-22 22:52:27 +01:00
"server-destroy": "^1.0.1",
2017-06-29 21:52:52 +01:00
"source-map-support": "^0.4.15",
2017-06-11 22:11:14 +01:00
"sprintf-js": "^1.1.1",
"sqlite3": "^3.1.8",
2017-07-12 21:39:47 +01:00
"string-padding": "^1.0.2",
2017-06-08 23:24:40 +01:00
"string-to-stream": "^1.1.0",
2017-06-22 20:44:38 +01:00
"tcp-port-used": "^0.1.2",
2017-06-11 22:11:14 +01:00
"uuid": "^3.0.1",
"vorpal": "^1.12.0"
2017-06-08 23:24:40 +01:00
},
"devDependencies": {
"babel-changed": "^7.0.0",
"babel-cli": "^6.24.1",
2017-06-15 22:17:56 +01:00
"babel-plugin-syntax-async-functions": "^6.1.4",
"babel-plugin-transform-regenerator": "^6.1.4",
2017-06-25 16:17:40 +01:00
"babel-polyfill": "^6.1.4",
2017-06-18 00:49:52 +01:00
"babel-preset-env": "^1.5.1",
2017-06-15 22:17:56 +01:00
"babel-preset-es2015": "^6.1.4",
2017-06-18 00:49:52 +01:00
"babel-preset-react": "^6.24.1",
2017-06-15 22:17:56 +01:00
"jasmine": "^2.6.0"
2017-06-08 23:24:40 +01:00
},
"scripts": {
2017-06-11 22:11:14 +01:00
"babelbuild": "babel app -d build",
2017-06-24 19:06:28 +01: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 20:58:17 +00:00
"clean": "babel-changed --reset",
2017-06-13 23:39:45 +01:00
"test": "babel-changed tests -d tests-build --source-maps && jasmine"
2017-06-08 23:24:40 +01:00
}
2017-06-05 23:00:02 +01:00
}