-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.4 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
{
"name": "hyper-orama",
"version": "0.0.2",
"description": "A screen recorder for the hyper terminal. It publishes all captured sessions to now.sh",
"keywords": [
"recorder",
"recording",
"terminal",
"video",
"now",
"bash",
"hyper",
"electron",
"redux"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cwlowder/hyper-orama.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cwlowder/hyper-orama/issues"
},
"homepage": "https://github.com/cwlowder/hyper-orama#readme",
"dependencies": {
"copy-paste": "^1.3.0",
"del": "^3.0.0",
"electron-prompt": "^1.3.0",
"html2canvas": "^1.0.0-alpha.12",
"mime-types": "^2.1.22",
"now": "^14.0.0",
"video-stream-merger": "^3.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"fast-deep-equal": "^2.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4"
}
}