-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 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
{
"name": "re-pl",
"version": "0.2.4",
"description": "The ultimate promise based general-purpose Read-Eval-Wait-Print Loop (REPL) console for Node.js",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha -- -u exports -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withmandala/node-repl.git"
},
"keywords": [
"repl",
"promise",
"wait",
"console",
"debug",
"es6"
],
"author": "Fadhli Dzil Ikram",
"license": "MIT",
"bugs": {
"url": "https://github.com/withmandala/node-repl/issues"
},
"homepage": "https://github.com/withmandala/node-repl#readme",
"dependencies": {
"esprima": "^3.1.1",
"lodash": "^4.17.2",
"setlist": "^0.2.0"
},
"devDependencies": {
"@types/esprima": "^2.1.33",
"@types/lodash": "^4.14.39",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.48",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.1.1",
"stream-buffers": "^3.0.1"
}
}