forked from asciinema/asciinema-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "asciinema-player",
"title": "asciinema player",
"description": "Web player for terminal session recordings.",
"version": "2.6.1",
"main": "resources/public/js/asciinema-player.js",
"homepage": "https://github.com/asciinema/asciinema-player",
"author": {
"name": "Marcin Kulik",
"email": "[email protected]",
"url": "http://ku1ik.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/asciinema/asciinema-player.git"
},
"keywords": [
"player",
"asciicast",
"video",
"video-playback",
"terminal",
"unix",
"tty"
],
"bugs": {
"url": "https://github.com/asciinema/asciinema-player/issues"
},
"license": "Apache-2.0",
"dependencies": {},
"files": [
"resources/public/js/asciinema-player.js",
"resources/public/css/asciinema-player.css"
],
"scripts": {
"build": "lein cljsbuild once release && lein less once",
"prepare": "npm run build",
"test": "lein doo phantom test once"
},
"devDependencies": {
"phantomjs": "^2.1.7"
}
}