compress-commons
Advanced tools
Comparing version 0.2.9 to 0.3.0
@@ -48,25 +48,25 @@ /** | ||
MODE_MASK: 0xFFF, | ||
DEFAULT_FILE_MODE: 0100644, // 644 -rw-r--r-- = S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH | ||
DEFAULT_DIR_MODE: 040755, // 755 drwxr-xr-x = S_IFDIR | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH | ||
DEFAULT_FILE_MODE: 33188, // 010644 = -rw-r--r-- = S_IFREG | S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH | ||
DEFAULT_DIR_MODE: 16877, // 040755 = drwxr-xr-x = S_IFDIR | S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH | ||
EXT_FILE_ATTR_DIR: 010173200020, // 755 drwxr-xr-x = (((S_IFDIR | 0755) << 16) | S_DOS_D) | ||
EXT_FILE_ATTR_FILE: 020151000040, // 644 -rw-r--r-- = (((S_IFREG | 0644) << 16) | S_DOS_A) >>> 0 | ||
EXT_FILE_ATTR_DIR: 1106051088, // 010173200020 = drwxr-xr-x = (((S_IFDIR | 0755) << 16) | S_DOS_D) | ||
EXT_FILE_ATTR_FILE: 2175008800, // 020151000040 = -rw-r--r-- = (((S_IFREG | 0644) << 16) | S_DOS_A) >>> 0 | ||
// Unix file types | ||
S_IFMT: 0170000, // type of file mask | ||
S_IFIFO: 010000, // named pipe (fifo) | ||
S_IFCHR: 020000, // character special | ||
S_IFDIR: 040000, // directory | ||
S_IFBLK: 060000, // block special | ||
S_IFREG: 0100000, // regular | ||
S_IFLNK: 0120000, // symbolic link | ||
S_IFSOCK: 0140000, // socket | ||
S_IFMT: 61440, // 0170000 type of file mask | ||
S_IFIFO: 4096, // 010000 named pipe (fifo) | ||
S_IFCHR: 8192, // 020000 character special | ||
S_IFDIR: 16384, // 040000 directory | ||
S_IFBLK: 24576, // 060000 block special | ||
S_IFREG: 32768, // 0100000 regular | ||
S_IFLNK: 40960, // 0120000 symbolic link | ||
S_IFSOCK: 49152, // 0140000 socket | ||
// DOS file type flags | ||
S_DOS_A: 040, // Archive | ||
S_DOS_D: 020, // Directory | ||
S_DOS_V: 010, // Volume | ||
S_DOS_S: 04, // System | ||
S_DOS_H: 02, // Hidden | ||
S_DOS_R: 01 // Read Only | ||
S_DOS_A: 32, // 040 Archive | ||
S_DOS_D: 16, // 020 Directory | ||
S_DOS_V: 8, // 010 Volume | ||
S_DOS_S: 4, // 04 System | ||
S_DOS_H: 2, // 02 Hidden | ||
S_DOS_R: 1 // 01 Read Only | ||
}; |
{ | ||
"name": "compress-commons", | ||
"version": "0.2.9", | ||
"version": "0.3.0", | ||
"description": "a library that defines a common interface for working with archive formats within node", | ||
@@ -23,3 +23,3 @@ "homepage": "https://github.com/archiverjs/node-compress-commons", | ||
"engines": { | ||
"node": ">= 0.8.0" | ||
"node": ">= 0.10.0" | ||
}, | ||
@@ -32,9 +32,9 @@ "scripts": { | ||
"crc32-stream": "~0.3.1", | ||
"node-int64": "~0.3.0", | ||
"node-int64": "~0.4.0", | ||
"readable-stream": "~1.0.26" | ||
}, | ||
"devDependencies": { | ||
"chai": "~2.1.0", | ||
"mocha": "~2.2.0", | ||
"rimraf": "~2.3.0", | ||
"chai": "~3.3.0", | ||
"mocha": "~2.3.3", | ||
"rimraf": "~2.4.3", | ||
"mkdirp": "~0.5.0" | ||
@@ -41,0 +41,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
# Compress Commons v0.2.9 [![Build Status](https://travis-ci.org/archiverjs/node-compress-commons.svg?branch=master)](https://travis-ci.org/archiverjs/node-compress-commons) | ||
# Compress Commons v0.3.0 [![Build Status](https://travis-ci.org/archiverjs/node-compress-commons.svg?branch=master)](https://travis-ci.org/archiverjs/node-compress-commons) | ||
@@ -3,0 +3,0 @@ Compress Commons is a library that defines a common interface for working with archive formats within node. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32224
+ Addednode-int64@0.4.0(transitive)
- Removednode-int64@0.3.3(transitive)
Updatednode-int64@~0.4.0