forked from GaspardP/Paradone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
50
51
{
"name": "Paradone",
"version": "0.3.0",
"description": "Peer-to-peer assisted media diffusion in the browser with WebRTC and MediaSource",
"author": "GaspardP",
"license": "AGPLv3",
"repository": {
"type": "git",
"url": "git://github.com/Paradone/Paradone.git"
},
"main": "src/index.js",
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"debug": "./scripts/debug.sh",
"doc": "./scripts/doc.sh",
"help": "./scripts/help.sh",
"start": "./scripts/help.sh",
"test": "./node_modules/karma/bin/karma start karma.conf.js",
"watch": "./node_modules/karma/bin/karma start karma.conf.js --port 9877 --autoWatch --singleRun false"
},
"dependencies": {
"localforage": "1.2.X",
"ramda": "0.13.X"
},
"devDependencies": {
"babel": "5.1.X",
"babelify": "6.0.X",
"browserify": "9.0.X",
"esperanto": "0.6.X",
"jsdoc": "^3.3.0-beta3",
"karma": "0.12.X",
"karma-browserify": "4.1.X",
"karma-chai": "0.1.X",
"karma-chrome-launcher": "0.1.X",
"karma-coverage": "0.2.X",
"karma-firefox-launcher": "0.1.X",
"karma-mocha": "0.1.X",
"karma-mocha-reporter": "1.X.X",
"karma-notify-reporter": "0.1.X",
"karma-sinon": "1.X.X",
"uglify-js": "2.X.X",
"watchify": "3.X.X",
"workerify": "git://github.com/josephros/workerify.git"
},
"browserify": {
"transform": [
"babelify"
]
}
}