-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
47 lines (47 loc) · 1.02 KB
/
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
47
{
"name": "local-echo",
"version": "0.2.0",
"description": "A local echo controller for xterm.js",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavesoft/local-echo.git"
},
"keywords": [
"xterm",
"echo",
"terminal",
"local",
"echo"
],
"author": "Ioannis Charalampidis",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wavesoft/local-echo/issues"
},
"homepage": "https://github.com/wavesoft/local-echo#readme",
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"dependencies": {
"shell-quote": "^1.6.1"
}
}