-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 970 Bytes
/
package.json
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
{
"name": "@benoitzohar/replx",
"version": "0.3.1",
"description": "REPL tool on steroids",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test-with-coverage": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage"
},
"bin": {
"replx": "./bin/replx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benoitzohar/replx.git"
},
"keywords": [
"repl",
"replx",
"cli",
"node",
"js",
"eval",
"read"
],
"author": "Benoit Zohar",
"license": "ISC",
"bugs": {
"url": "https://github.com/benoitzohar/replx/issues"
},
"homepage": "https://github.com/benoitzohar/replx",
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/node": "12.0.2",
"capture-console": "1.0.1",
"codacy-coverage": "3.4.0",
"jest": "24.9.0"
},
"dependencies": {
"chalk": "2.4.2",
"commander": "2.20.0"
}
}