-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 924 Bytes
/
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
{
"name": "jta",
"version": "0.0.0",
"description": "Export from Joplin and import into Anki",
"main": "bin/jta",
"bin": {
"jta": "./bin/jta"
},
"scripts": {
"test": "npm run test:joplin-exporter && npm run test:integration",
"test:joplin-exporter": "./node_modules/mocha/bin/mocha joplin.test.js",
"test:integration": "./node_modules/mocha/bin/mocha integration.test.js"
},
"keywords": [
"anki",
"joplin",
"import",
"export",
"srs"
],
"author": "BartBucknill",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"commander": "^5.0.0",
"configstore": "^5.0.1",
"dotenv": "^8.2.0",
"highlight": "^0.2.4",
"highlight.js": "^9.18.1",
"lodash": "^4.17.15",
"markdown": "^0.5.0",
"marked": "^0.8.2",
"mocha": "^7.1.1",
"prismjs": "^1.20.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
}
}