-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 959 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "anki-apkg-export-cli",
"version": "2.0.1",
"description": "CLI for generating Anki's decks",
"main": "lib/index.js",
"bin": {
"anki-apkg-export": "cli.js"
},
"files": [
"cli.js",
"lib"
],
"dependencies": {
"anki-apkg-export": "^1.0.1",
"chalk": "^1.1.3",
"meow": "^3.7.0",
"update-notifier": "^1.0.2"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "^6.0.0",
"eslint": "^2.7.0",
"husky": "^0.11.3"
},
"author": "ewnd9 <ewndnine@gmail.com>",
"keywords": [
"anki",
"CLI"
],
"engines": {
"node": ">=4.0"
},
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ewnd9/anki-apkg-export-cli.git"
},
"scripts": {
"lint": "eslint 'lib/**/*.js'",
"prepush": "npm run lint && npm test",
"start": "node cli.js",
"test": "ava",
"test:watch": "npm run test -- --watch"
}
}