-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.12 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
51
52
53
54
{
"name": "@udarajay/atm",
"version": "0.5.1",
"author": "Udara Jay @UdaraJay",
"bin": {
"atm": "./bin/run"
},
"bugs": "https://github.com/UdaraJay/atm/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"dateformat": "^3.0.3",
"inquirer": "^7.3.3",
"read-each-line-sync": "^1.0.5",
"sentiment": "^5.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"globby": "^10"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/UdaraJay/atm",
"keywords": [
"cli",
"logging"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "atm",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "UdaraJay/atm",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS"
}
}