-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 977 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 977 Bytes
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
{
"name": "solved",
"version": "1.0.0",
"description": "Command line JS/ Node application to get StackOverflow's highest ranked answers to runtime errors in the terminal.",
"main": "./lib/solved.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"solved": "bin/index.js",
"start": " node bin/index.js || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamrestrepo/solved.git"
},
"keywords": [
"CLI",
"js",
"node.js",
"npm",
"Stackoverflow",
"developer",
"tools"
],
"author": "iamrestrepo",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamrestrepo/solved/issues"
},
"homepage": "https://github.com/iamrestrepo/solved#readme",
"dependencies": {
"colors": "^1.4.0",
"iconv-lite": "^0.6.2",
"lodash": "^4.17.20",
"request": "^2.88.2",
"utf8": "^3.0.0",
"zlib": "^1.0.5"
}
}