forked from repeat-space/anki-apkg-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "anki-apkg-export",
"description": "Generate decks for Anki (spaced repetition software)",
"version": "4.0.2",
"main": "dist/index.js",
"dependencies": {
"jszip": "^3.1.2",
"sha1": "^1.1.1",
"sql.js": "^0.3.2"
},
"devDependencies": {
"arraybuffer-equal": "1.0.4",
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"eslint": "^4.1.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.0",
"lodash.sortby": "4.7.0",
"mkdirp": "0.5.1",
"pify": "^3.0.0",
"prettier": "^1.8.2",
"proxyquire": "^1.8.0",
"sinon": "^2.3.5",
"sqlite3": "3.1.13"
},
"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",
"precommit": "npm test",
"prepublish": "npm run build",
"test": "npm run lint && ava",
"test:watch": "npm run test -- --watch"
}
}