forked from cdunford/mplayer-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.41 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
{
"name": "kalama-mplayer-as-promised",
"version": "0.1.0",
"description": "(Special fork for kalama project. Contains some patches and fixes). Simple mplayer (http://www.mplayerhq.hu/) wrapper for use in node written in Typescript and presenting a promise-heavy API",
"main": "dist/lib/index.js",
"types": "dist/typings/lib/index.d.ts",
"scripts": {
"prebuild": "node prebuild.js",
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/example.js",
"pretest": "npm run build",
"test": "mocha \"dist/test/**/*.js\"",
"predebug": "npm run build",
"debug": "node --inspect dist/example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jskalama/mplayer-as-promised.git"
},
"keywords": [
"mplayer"
],
"author": "Craig Dunford",
"contributors": [
{
"name": "corporateanon",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jskalama/mplayer-as-promised/issues"
},
"homepage": "https://github.com/jskalama/mplayer-as-promised#readme",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.44",
"@types/node": "^7.0.46",
"@types/sinon": "^1.16.36",
"@types/sinon-chai": "^2.7.29",
"chai": "^3.5.0",
"fs-extra": "^3.0.1",
"mocha": "^3.5.3",
"sinon": "^2.4.1",
"sinon-chai": "^2.14.0",
"typescript": "^2.6.1"
}
}