forked from fpapado/micro-anki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 789 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 789 Bytes
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
{
"name": "micro-anki",
"version": "1.0.0",
"description": "Anki apkg export as a microservice",
"author": "fpapado",
"repository": {
"type": "git",
"url": "git+https://github.com/fpapado/micro-anki.git"
},
"license": "MIT",
"scripts": {
"test": "xo && ava",
"start": "micro",
"dev": "micro-dev",
"deploy": "now -A ./now.json && now alias -A ./now.json"
},
"main": "index.js",
"dependencies": {
"anki-apkg-export": "^4.0.2",
"micro": "^9.1.0",
"micro-cors": "0.0.4"
},
"devDependencies": {
"async-to-gen": "^1.3.3",
"ava": "^0.24.0",
"got": "^8.0.1",
"micro-dev": "^2.2.0",
"prettier": "^1.10.2",
"test-listen": "^1.1.0",
"xo": "^0.18.2"
},
"xo": {
"space": true,
"prettier": true
}
}