-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 939 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
47
48
49
{
"name": "word2num-cli",
"version": "0.1.0",
"description": "`word2num` for the command line",
"scripts": {
"test": "xo && ava"
},
"bin": {
"word2num": "cli.js"
},
"files": [
"cli.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yatharthk/word2num-cli.git"
},
"keywords": [
"word2num",
"cli",
"cli-app",
"numbers",
"number",
"words",
"text-to-number",
"word-to-number",
"int",
"conversion"
],
"author": "Yatharth Khatri <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yatharthk/word2num-cli/issues"
},
"homepage": "https://github.com/yatharthk/word2num-cli#readme",
"devDependencies": {
"ava": "^0.18.2",
"execa": "^0.6.0",
"xo": "^0.17.1"
},
"dependencies": {
"meow": "^3.7.0",
"word2num": "^0.1.1"
},
"xo": {
"semicolon": false,
"space": 2
}
}