Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f196a6a0ca5d241d9a767c4380fd4d8c2ac9c78e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
  "name": "rewire",
  "version": "4.0.0",
  "description": "Easy dependency injection for node.js unit testing",
  "keywords": [
    "dependency",
    "injection",
    "mock",
    "shim",
    "module",
    "unit",
    "test",
    "leak",
    "inspect",
    "fake",
    "require"
  ],
  "author": {
    "name": "Johannes Ewald",
    "email": "mail@johannesewald.de"
  },
  "main": "lib/index.js",
  "homepage": "https://github.com/jhnns/rewire",
  "bugs": {
    "url": "https://github.com/jhnns/rewire/issues",
    "email": "mail@johannesewald.de"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/jhnns/rewire.git"
  },
  "devDependencies": {
    "coffeescript": "^2.4.1",
    "expect.js": "^0.3.1",
    "mocha": "^6.1.4"
  },
  "license": "MIT",
  "scripts": {
    "test": "mocha -R spec",
    "coverage": "istanbul cover ./node_modules/mocha/bin/_mocha"
  },
  "dependencies": {
    "eslint": "^5.16.0"
  }
}