-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
53 lines (53 loc) · 1.36 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "anki-apkg-export",
"description": "Generate decks for Anki (spaced repetition software)",
"version": "4.0.3",
"main": "dist/index.js",
"dependencies": {
"jszip": "^3.2.2",
"sha1": "^1.1.1",
"sql.js": "^0.5.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"arraybuffer-equal": "1.0.4",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"lodash.sortby": "4.7.0",
"mkdirp": "0.5.1",
"pify": "^4.0.1",
"prettier": "^1.19.1",
"proxyquire": "^2.1.3",
"sinon": "^8.0.2",
"sqlite3": "4.1.1"
},
"author": "ewnd9 <[email protected]>",
"keywords": [
"anki",
"spaced repetition software",
"webpack"
],
"license": "MIT",
"preferGlobal": "true",
"repository": {
"type": "git",
"url": "git+https://github.com/ewnd9/anki-apkg-export.git"
},
"scripts": {
"build": "babel -d dist src",
"build:watch": "babel -w -d dist src",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"postpublish": "rm -rf dist",
"prepare": "yarn run build",
"test": "yarn run lint && ava",
"test:watch": "yarn run test -- --watch"
}
}