forked from felixge/node-sandboxed-module
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 869 Bytes
/
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
{
"author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
"name": "@log4js-node/sandboxed-module",
"description": "A sandboxed Node.js module loader that lets you inject dependencies into your modules.",
"keywords": [
"require",
"mocking",
"mocks",
"stubs",
"dependency injection",
"testing"
],
"license": "MIT",
"version": "2.2.1",
"repository": {
"type": "git",
"url": "https://github.com/log4js-node/node-sandboxed-module.git"
},
"main": "./lib/sandboxed_module",
"files": [
"lib/"
],
"scripts": {
"prepare": "node scripts/generate_builtin_modules_list",
"test": "node test/run"
},
"dependencies": {
"require-like": "0.1.2",
"stack-trace": "0.0.10"
},
"devDependencies": {
"urun": "0.0.8",
"coffeescript": "^2.3.2",
"istanbul": "^0.4.5"
}
}