-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 989 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": "screenrec",
"version": "0.0.3",
"description": "osx screen recording with node",
"main": "node/index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha test/* --compilers js:babel/register -t 15s --require mocha-clean",
"prestart": "make clean && make",
"start": "node bin/screenrec"
},
"repository": {
"type": "git",
"url": "https://github.com/Urucas/screenrec.git"
},
"keywords": [
"osx",
"screen",
"record",
"recording",
"nodejs",
"mov",
"mp4",
"gif"
],
"author": "Urucas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Urucas/screenrec/issues"
},
"homepage": "https://github.com/Urucas/screenrec",
"dependencies": {
"babel": "^4.6.3",
"colors": "^1.0.3",
"js-comments": "^0.4.0",
"keypress": "^0.2.1"
},
"devDependencies": {
"mocha": "^2.1.0",
"mocha-clean": "^0.4.0"
},
"bin": {
"screenrec": "./bin/screenrec"
}
}