-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 954 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
37
38
39
{
"name": "extended-require",
"version": "1.2.0",
"description": "Extends require() capabilities",
"author": "Stephen Berquet",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/samleybrize/node-extended-require/blob/master/LICENSE"
}
],
"keywords": [
"require",
"extended",
"relative",
"include"
],
"repository": {
"type": "git",
"url": "https://github.com/samleybrize/node-extended-require"
},
"main": "lib/extended-require",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"path-is-absolute": "~1.0.0",
"caller": "~1.0.0",
"package-json-discover": "~1.0.0"
},
"devDependencies": {
"mocha": "~2.2.4",
"chai": "~2.3.0",
"proxyquire": "~1.4.0"
},
"scripts": {
"test": "mocha -R spec --full-trace ./tests/tests.js"
}
}