-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "@ndarilek/janus",
"version": "0.5.1",
"description": "Simple API for the Janus media server",
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"build": "typings install && tsc",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "istanbul cover node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndarilek/janus-api.git"
},
"author": "Nolan Darilek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ndarilek/janus-api/issues"
},
"homepage": "https://github.com/ndarilek/janus-api#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"isomorphic-fetch": "^2.2.1",
"istanbul": "^1.0.0-alpha.2",
"jasmine": "^2.4.1",
"jasmine-http-server-spy": "^0.2.0",
"typescript": "^1.9.0-dev.20160414",
"typings": "^0.8.1"
},
"dependencies": {
"es6-promise": "^3.1.2",
"eventemitter3": "^1.2.0",
"lodash": "^4.8.2"
}
}