-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) Β· 850 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
{
"name": "suoxie",
"version": "0.6.1",
"description": "Query abbreviation in your command line.",
"main": "lib/index.js",
"bin": {
"sx": "cli.js",
"suoxie": "cli.js"
},
"files": [
"cli.js",
"lib"
],
"scripts": {
"test": "standard . && ava"
},
"keywords": [
"translate",
"abbreviations",
"term"
],
"author": "viko16 <[email protected]>",
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/viko16/suoxie",
"repository": "viko16/suoxie",
"bugs": "https://github.com/viko16/suoxie/issues",
"license": "MIT",
"dependencies": {
"chalk": "^2.0.0",
"fast-xml-parser": "^4.2.4",
"meow": "^3.7.0",
"node-fetch": "^2.6.1",
"ora": "^1.3.0",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"ava": "^0.21.0",
"standard": "^10.0.2"
}
}