-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 707 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 707 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
{
"name": "node-repl",
"version": "2.0.2",
"bin": {
"node-repl": "bin.js"
},
"description": "run a node program but also attach a repl to the same context that your code runs in so you can inspect + mess with stuff as your program is running",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "max ogden",
"license": "BSD",
"dependencies": {
"strip-bom": "^1.0.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/maxogden/node-repl.git"
},
"bugs": {
"url": "https://github.com/maxogden/node-repl/issues"
},
"homepage": "https://github.com/maxogden/node-repl"
}