Projekt

Obecné

Profil

Stáhnout (1.34 KB) Statistiky
| Větev: | Revize:
1
{
2
  "name": "readable-stream",
3
  "version": "2.3.7",
4
  "description": "Streams3, a user-land copy of the stream library from Node.js",
5
  "main": "readable.js",
6
  "dependencies": {
7
    "core-util-is": "~1.0.0",
8
    "inherits": "~2.0.3",
9
    "isarray": "~1.0.0",
10
    "process-nextick-args": "~2.0.0",
11
    "safe-buffer": "~5.1.1",
12
    "string_decoder": "~1.1.1",
13
    "util-deprecate": "~1.0.1"
14
  },
15
  "devDependencies": {
16
    "assert": "^1.4.0",
17
    "babel-polyfill": "^6.9.1",
18
    "buffer": "^4.9.0",
19
    "lolex": "^2.3.2",
20
    "nyc": "^6.4.0",
21
    "tap": "^0.7.0",
22
    "tape": "^4.8.0"
23
  },
24
  "scripts": {
25
    "test": "tap test/parallel/*.js test/ours/*.js && node test/verify-dependencies.js",
26
    "ci": "tap test/parallel/*.js test/ours/*.js --tap | tee test.tap && node test/verify-dependencies.js",
27
    "cover": "nyc npm test",
28
    "report": "nyc report --reporter=lcov"
29
  },
30
  "repository": {
31
    "type": "git",
32
    "url": "git://github.com/nodejs/readable-stream"
33
  },
34
  "keywords": [
35
    "readable",
36
    "stream",
37
    "pipe"
38
  ],
39
  "browser": {
40
    "util": false,
41
    "./readable.js": "./readable-browser.js",
42
    "./writable.js": "./writable-browser.js",
43
    "./duplex.js": "./duplex-browser.js",
44
    "./lib/internal/streams/stream.js": "./lib/internal/streams/stream-browser.js"
45
  },
46
  "nyc": {
47
    "include": [
48
      "lib/**.js"
49
    ]
50
  },
51
  "license": "MIT"
52
}
(8-8/14)