forked from repeat-space/anki-apkg-export
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 784 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
{
"name": "@steve2955/anki-apkg-export",
"description": "Generate decks for Anki (spaced repetition software)",
"version": "5.0.0",
"main": "src/index.js",
"dependencies": {
"jszip": "^3.2.2",
"sha1": "^1.1.1",
"sql.js": "^0.5.0"
},
"author": "ewnd9 <ewndnine@gmail.com>",
"keywords": [
"anki",
"spaced repetition software",
"webpack",
"md2apkg",
"apkg"
],
"license": "MIT",
"type":"module",
"repository": {
"type": "git",
"url": "git+https://github.com/Steve2955/anki-apkg-export.git"
},
"scripts": {
"build:watch": "babel -w -d dist src",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"postpublish": "rm -rf dist",
"test": "yarn run lint && ava",
"test:watch": "yarn run test -- --watch"
}
}