forked from felixge/node-sandboxed-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 796 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 796 Bytes
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
{
"author": "Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)",
"name": "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.0.3",
"repository": "felixge/node-sandboxed-module",
"main": "./lib/sandboxed_module",
"files": [
"lib/"
],
"scripts": {
"prepublish": "node scripts/generate_builtin_modules_list",
"test": "node test/run"
},
"dependencies": {
"require-like": "0.1.2",
"stack-trace": "0.0.9"
},
"devDependencies": {
"urun": "0.0.8",
"coffee-script": "1.7.x",
"istanbul": "~0.2.11"
}
}