-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "bibtex-search",
"version": "0.3.1",
"description": "Search for BibTeX references",
"main": "index.js",
"bin": "cli.js",
"repository": "https://github.com/ekmartin/bibtex-search",
"author": "Martin Ek <mail@ekmartin.com>",
"keywords": [
"bibtex",
"acm",
"ieee",
"google-scholar"
],
"license": "MIT",
"scripts": {
"start": "node cli.js",
"test": "yarn lint && ava",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier '**/*.{js,md}' --list-different",
"prettier": "prettier '**/*.{js,md}' --write"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 8
}
},
"dependencies": {
"chalk": "^2.3.0",
"cheerio": "^1.0.0-rc.2",
"clipboardy": "^1.2.2",
"got": "^8.0.0",
"inquirer": "^4.0.0",
"meow": "^4.0.0",
"ora": "^1.3.0"
},
"devDependencies": {
"ava": "^0.24.0",
"eslint": "^4.12.0",
"eslint-config-prettier": "^2.9.0",
"prettier": "^1.8.2"
}
}