-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@osjs/xterm-application",
"version": "1.4.0",
"description": "OS.js Xterm Application",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint index.js",
"stylelint": "stylelint index.scss",
"build": "webpack",
"watch": "webpack --watch",
"prepublishOnly": "npm run eslint && npm run stylelint && rm ./dist/* && NODE_ENV=production npm run build"
},
"files": [
"dist/",
"metadata.json",
"server.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/os-js/osjs-xterm-application.git"
},
"keywords": [
"osjs"
],
"dependencies": {
"clipboard-polyfill": "^2.8.6",
"hyperapp": "^1.2.10",
"node-pty": "^0.9.0",
"uuid": "^7.0.1",
"xterm": "^4.4.0",
"xterm-addon-attach": "^0.5.0",
"xterm-addon-fit": "^0.3.0"
},
"author": "Anders Evenrud <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/os-js/osjs-xterm-application/issues"
},
"homepage": "https://github.com/os-js/osjs-xterm-application#readme",
"osjs": {
"type": "package"
},
"devDependencies": {
"@osjs/dev-meta": "^2.0.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "@osjs/eslint-config"
},
"stylelint": {
"extends": "@osjs/stylelint-config"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{}
]
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}