-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 904 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
{
"name": "terminal-lexicon",
"version": "0.0.9",
"description": "dict in terminal by node",
"main": "./src/index.js",
"repository": "https://github.com/zhangwang1990/dict.git",
"author": "zhangwang1990 <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"commander": "^5.1.0",
"lodash": "^4.17.15",
"node-emoji": "^1.8.1"
},
"scripts": {
"precommit": "lint-staged",
"lint": "eslint src/*",
"lint:fix": "prettier src/* --write"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^7.1.0",
"prettier": "2.0.5"
},
"preferGlobal": true,
"bin": {
"dict": "./src/index.js"
}
}