forked from vvscode/js--anki-apkg-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "anki-apkg-export",
"description": "Generate decks for Anki (spaced repetition software)",
"version": "3.0.0",
"main": "dist/index.js",
"dependencies": {
"jszip": "^3.1.2",
"sha1": "^1.1.1",
"sql.js": "^0.3.2"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "~6.6.0",
"babel-eslint": "^6.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "~6.6.0",
"babel-register": "^6.18.0",
"eslint": "^3.0.0",
"husky": "^0.11.6",
"lodash.sortby": "4.7.0",
"mkdirp": "0.5.1",
"pify": "2.3.0",
"proxyquire": "1.7.10",
"sinon": "^1.17.6",
"sqlite3": "3.1.8"
},
"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"
}
}