package.json 870 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
{
  "name": "destroy",
  "description": "destroy a stream if possible",
4
  "version": "1.0.4",
Rosanny Sihombing's avatar
Rosanny Sihombing committed
5
6
7
8
9
10
11
12
13
14
15
16
  "author": {
    "name": "Jonathan Ong",
    "email": "me@jongleberry.com",
    "url": "http://jongleberry.com",
    "twitter": "https://twitter.com/jongleberry"
  },
  "contributors": [
    "Douglas Christopher Wilson <doug@somethingdoug.com>"
  ],
  "license": "MIT",
  "repository": "stream-utils/destroy",
  "devDependencies": {
17
18
    "istanbul": "0.4.2",
    "mocha": "2.3.4"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
19
20
21
  },
  "scripts": {
    "test": "mocha --reporter spec",
22
23
    "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
    "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  },
  "files": [
    "index.js",
    "LICENSE"
  ],
  "keywords": [
    "stream",
    "streams",
    "destroy",
    "cleanup",
    "leak",
    "fd"
  ]
}