-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "npmf",
"version": "1.0.1",
"description": "A very useful tool to fetch quick info of a npm package using your favourite terminal",
"bin": {
"f": "lib/cli.js",
"npmf": "lib/cli.js"
},
"scripts": {
"build": "babel src -d lib",
"start": "node src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rousan/npmf.git"
},
"keywords": [
"npm",
"package",
"fetch",
"terminal",
"info",
"meta",
"quick"
],
"author": "Rousan Ali <rousanali786@gmail.com> (https://rousan.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rousan/npmf/issues"
},
"homepage": "https://github.com/rousan/npmf#readme",
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"chalk": "^2.4.2",
"commander": "2.14.1",
"http-status-codes": "^1.3.0",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0"
},
"engines": {
"node": ">=4.0.0"
}
}