-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
package.json
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
{
"name": "intercept-require",
"version": "1.1.0",
"description": "Intercept calls to require()",
"keywords": [
"require",
"hook",
"override",
"mock",
"intercept",
"modify"
],
"homepage": "https://github.com/bttmly/intercept-require",
"contributors": [
"Nick Bottomley (github.com/bttmly)",
"ralph varjabedian"
],
"repository": {
"type": "git",
"url": "https://github.com/bttmly/intercept-require.git"
},
"license": "MIT",
"dependencies": {
"callsite": "^1.0.0",
"object-assign": "^2.0.0"
},
"devDependencies": {
"codecov.io": "0.0.8",
"expect": "^1.20.2",
"istanbul": "^0.3.5",
"jshint": "^2.5.11",
"mocha": "^2.1.0"
},
"scripts": {
"test": "mocha ./test/test.js",
"cover": "node --harmony ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- ./test/index-test.js -R spec",
"codecovio": "npm run cover; cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js --verbose"
},
"main": "index.js"
}