-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.3 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.3 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
53
{
"name": "nm-hunter",
"version": "0.1.5",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "./src/index.js",
"test:watch": "jest --watch",
"test": "npm run lint && jest",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/g3org3/nm-hunter.git"
},
"files": [
"src",
"package.json"
],
"bin": {
"nm-hunter": "src/index.js"
},
"keywords": [],
"author": "George <7jagjag@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/g3org3/nm-hunter/issues"
},
"homepage": "https://github.com/g3org3/nm-hunter#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "~24.9.0",
"prettier": "1.19.1",
"prettier-config-standard": "^1.0.1"
},
"dependencies": {
"array-includes": "^3.1.1",
"commander": "~4.0.1",
"du": "^1.0.0",
"ora": "^4.0.3",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^5.1.0",
"util.promisify": "^1.0.0"
}
}