forked from felixge/node-sandboxed-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 854 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
{
"author": "Felix Geisendörfer <[email protected]> (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": "0.2.0",
"homepage": "https://github.com/felixge/node-sandboxed-module",
"repository": {
"type": "git",
"url": "git://github.com/felixge/node-sandboxed-module.git"
},
"bugs": {
"url": "http://github.com/felixge/node-sandboxed-module/issues"
},
"main": "./lib/sandboxed_module",
"scripts": {
"test": "node test/run"
},
"dependencies": {
"require-like": "0.1.2",
"stack-trace": "0.0.6"
},
"devDependencies": {
"urun": "0.0.6",
"coffee-script": "1.x"
}
}