Wiki Ubuntu-it

Indice
Partecipa
FAQ
Wiki Blog
------------------
Ubuntu-it.org
Forum
Chiedi
Chat
Cerca
Planet
  • Pagina non alterabile
  • Informazioni
  • Allegati

Versione 7 del 26/03/2014 01.38.32

Nascondi questo messaggio

Informazioni

In questa pagina vengono riportate informazioni sul lavoro di packaging di debomatic-webui.


Dipendenze

path

npm

debian

task

├── ejs

ejs (1.0.0)

ejs.js (0.8.4-3)

├── express

express (3.5.1)

node-express (2.5.9-2)

│ ├── buffer-crc32

buffer-crc32 (0.2.1)

node-buffer-crc32 (0.2.1-1)

│ ├── commander

commander (2.1.0)

node-commander (2.0.0-1)

│ │ └── keypress

keypress (0.2.1)

node-keypress (0.1.0-2)

│ ├── connect

connect (2.14.3)

node-connect (1.7.3-1)

│ │ ├── batch

batch (0.5.0)

│ │ ├── bytes

bytes (0.3.0)

node-bytes (0.2.1-1)

│ │ ├── multiparty

multiparty (3.2.3)

node-multiparty (2.2.0-1)

│ │ │ ├── readable-stream

readable-stream (1.0.26-2)

│ │ │ │ ├── core-util-is

core-util-is (1.0.1)

│ │ │ │ ├── debuglog

debuglog (1.0.1)

│ │ │ │ └── string_decoder

string_decoder (0.10.25-1)

│ │ │ └── stream-counter

stream-counter (0.2.0)

│ │ ├── negotiator

negotiator (0.4.2)

node-negotiator (0.3.0-1)

│ │ ├── pause

pause (0.0.1)

│ │ ├── qs

qs (0.6.6)

node-qs (0.6.5-1)

│ │ ├── raw-body

raw-body (1.1.3)

node-raw-body (0.0.3-1)

│ │ └── uid2

uid2 (0.0.3)

│ ├── cookie

cookie (0.1.1)

node-cookie (0.1.0-1)

│ ├── cookie-signature

cookie-signature (1.0.3)

node-cookie-signature (1.0.1-1)

│ ├── debug

debug (0.7.4)

node-debug (0.6.0-1)

│ ├── fresh

fresh (0.2.2)

node-fresh (0.2.0-1)

│ ├── merge-descriptors

merge-descriptors (0.0.2)

│ ├── methods

methods (0.1.0)

│ ├── mkdirp

mkdirp (0.3.5)

node-mkdirp (0.3.5-1)

│ ├── range-parser

range-parser (1.0.0)

node-range-parser (0.0.4+git7d1cd72a-1)

│ └── send

send (0.2.0)

node-send (0.1.4-1)

│ └── mime

mime (1.2.11)

node-mime (1.2.11-1)

├── socket.io

socket.io (0.9.16)

│ ├── base64id

base64id (0.1.0)

node-base64id (0.1.0-2)

│ ├── policyfile

policyfile (0.0.5)

node-policyfile (0.0.5-2)

│ ├── redis

redis (0.10.1)

│ └── socket.io-client

socket.io-client (0.9.16)

│ ├── active-x-obfuscator

active-x-obfuscator (0.0.2)

node-active-x-obfuscator (0.0.2-1)

│ │ └── zeparser

zeparser (0.0.7)

zeparser.js (0.0.7+dfsg-1)

│ ├── uglify-js

uglify-js (2.4.13)

│ ├── ws

ws (0.4.31)

│ │ ├── commander

commander (2.1.0)

node-commander (2.0.0-1)

│ │ ├── nan

nan (0.8.0)

node-nan (0.3.2-1)

│ │ ├── options

options (0.0.5)

│ │ └── tinycolor

tinycolor (0.0.1)

node-tinycolor (0.0.1~git20130725-1)

│ └── xmlhttprequest

xmlhttprequest (1.6.0)

node-xmlhttprequest (1.6.0-1)

└── tail

tail (0.3.5)

Commands

function table_npm_debian () {
    tree | while read line ; do echo "|| $line || `only_name $line ` (`npm info $(only_name $line) version`) || `apt-cache madison node-$(only_name $line) | grep Source | awk '{print $1 " (" $3 ")" }'` || ||" ; done
}

function only_name () {
    echo $1 | rev | cut -d'/' -f1 | rev
}

function tree () {
    find -name node_modules| while read line ; do find $line -type d -maxdepth 1 ; done | grep -v .bin | grep -v 'node_modules$' | sort | sed 's#node_modules/##g' |  sed 's#^./##g'
}