forked from stevekinney/dropbear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 967 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
{
"name": "dropbear",
"version": "0.0.1",
"description": "",
"main": "index.js",
"bin": {
"dropbear": "bin/dropbear"
},
"scripts": {
"start": "node src/repl.js",
"test": "jest"
},
"keywords": [],
"author": "Steve Kinney <[email protected]> (https://stevekinney.net)",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/generator": "^7.4.4",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"chalk": "^2.4.2",
"inquirer": "^6.3.1",
"lodash": "^4.17.11",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"mock-fs": "^4.10.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "^.+\\.test.jsx?$",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
}
}