]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - package.json
Use lodash v4
[github/Chocobozzz/PeerTube.git] / package.json
CommitLineData
8c308c2b 1{
d148f3b9
C
2 "name": "peertube",
3 "description": "Prototype of a decentralized video streaming platform using P2P (bittorent) directly in the web browser with webtorrent.",
8c308c2b
C
4 "version": "0.0.1",
5 "private": true,
288a1331 6 "licence": "GPLv3",
8c308c2b 7 "engines": {
86435b9b 8 "node": ">=4.2.0"
288a1331
C
9 },
10 "author": {
11 "name": "Florian Bigard",
12 "email": "florian.bigard@gmail.com",
13 "url": "http://github.com/Chocobozzz"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git://github.com/Chocobozzz/PeerTube.git"
8c308c2b
C
18 },
19 "scripts": {
ccfd23df
C
20 "build": "concurrently \"npm run client:sass\" \"npm run client:tsc\"",
21 "client:clean": "concurrently \"npm run client:tsc:clean\" \"npm run client:sass:clean\"",
22 "client:sass:index": "npm run client:sass:index:clean && cd client && node-sass --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css",
bd324a66 23 "client:sass:index:watch": "cd client && node-sass -w --include-path node_modules/bootstrap-sass/assets/stylesheets/ stylesheets/application.scss stylesheets/index.css",
ccfd23df 24 "client:sass:index:clean": "cd client && rm -f stylesheets/index.css",
dc8bc31b
C
25 "client:sass:angular": "cd client && node-sass angular/ --output angular/",
26 "client:sass:angular:watch": "cd client && node-sass -w angular/ --output angular/",
27 "client:sass:angular:clean": "cd client && rm -f angular/**/*.css",
dc8bc31b
C
28 "client:sass": "concurrently \"npm run client:sass:index\" \"npm run client:sass:angular\"",
29 "client:sass:watch": "concurrently \"npm run client:sass:index:watch\" \"npm run client:sass:angular:watch\"",
30 "client:sass:clean": "concurrently \"npm run client:sass:index:clean\" \"npm run client:sass:angular:clean\"",
ccfd23df
C
31 "client:tsc": "cd client && npm run tsc",
32 "client:tsc:watch": "cd client && npm run tsc:w",
dc8bc31b 33 "client:tsc:clean": "cd client && find angular -regextype posix-egrep -regex \".*\\.(js|map)$\" -exec rm -f {} \\;",
9457bf88 34 "dev": "npm run build && NODE_ENV=test concurrently \"npm run livereload\" \"npm run client:tsc:watch\" \"npm run client:sass:watch\" \"npm start\"",
ccfd23df
C
35 "livereload": "livereload ./client",
36 "start": "node server",
44124980 37 "test": "cd client && npm test && cd .. && standard && mocha server/tests",
98b01bac 38 "postinstall": "cd client && npm install"
8c308c2b
C
39 },
40 "dependencies": {
41 "async": "^1.2.1",
02b72dc7 42 "bittorrent-tracker": "^8.0.0",
8c308c2b 43 "body-parser": "^1.12.4",
2c4a0b5d 44 "concurrently": "^2.0.0",
8c308c2b
C
45 "config": "^1.14.0",
46 "connect-livereload": "^0.5.3",
8c308c2b
C
47 "debug": "^2.2.0",
48 "dezalgo": "^1.0.3",
49 "electron-spawn": "https://github.com/Chocobozzz/electron-spawn",
50 "express": "^4.12.4",
0c1cbbfe 51 "express-oauth-server": "https://github.com/Chocobozzz/express-oauth-server",
8c308c2b 52 "express-validator": "^2.11.0",
e1c8024a 53 "js-yaml": "^3.5.4",
e7ea0979 54 "lodash": "^4.11.1",
8c308c2b
C
55 "mkdirp": "^0.5.1",
56 "mongoose": "^4.0.5",
57 "morgan": "^1.5.3",
207fbab4 58 "multer": "^1.1.0",
02b72dc7 59 "node-ipc": "^7.0.0",
dd00473a 60 "openssl-wrapper": "^0.2.3",
8c308c2b 61 "request": "^2.57.0",
a81e7a22 62 "request-replay": "^1.0.2",
207fbab4 63 "segfault-handler": "^1.0.0",
4429bba6 64 "ursa": "^0.9.1",
ce9526fb 65 "validator": "^5.0.0",
02b72dc7 66 "webtorrent": "^0.89.0",
207fbab4 67 "winston": "^2.1.1",
b33d09c1 68 "ws": "^1.0.1"
8c308c2b
C
69 },
70 "devDependencies": {
71 "chai": "^3.3.0",
72 "mocha": "^2.3.3",
ccfd23df
C
73 "node-livereload": "^0.6.0",
74 "node-sass": "^3.4.2",
b3077e41 75 "standard": "^6.0.1",
8c308c2b
C
76 "supertest": "^1.1.0"
77 },
78 "standard": {
3d446a26
C
79 "ignore": [
80 "client/"
81 ],
8c308c2b
C
82 "globals": [
83 "alert",
84 "confirm",
85 "it",
86 "after",
3bcb78b3 87 "afterEach",
8c308c2b 88 "before",
3bcb78b3 89 "beforeEach",
2dd5b570
C
90 "describe",
91 "include"
8c308c2b
C
92 ]
93 }
94}