-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
52 lines (52 loc) · 1.06 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "requireg",
"version": "0.2.2",
"description": "Require and resolve global modules like a boss",
"homepage": "http://github.com/h2non/requireg",
"bugs": "https://github.com/h2non/requireg/issues",
"contributors": [
{
"name": "Tomas Aparicio",
"email": "tomas@aparicio.me"
},
{
"name": "Eugene Sharygin",
"url": "https://github.com/eush77"
}
],
"repository": {
"type": "git",
"url": "https://github.com/h2non/requireg.git"
},
"licenses": "MIT",
"main": "lib/requireg",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"test": "mocha -u tdd --ui exports --reporter spec --slow 2000ms --bail"
},
"keywords": [
"global",
"npm",
"modules",
"module",
"require",
"import",
"resolve"
],
"dependencies": {
"nested-error-stacks": "~2.0.1",
"rc": "~1.2.7",
"resolve": "~1.7.1"
},
"devDependencies": {
"mocha": "~5.2.0",
"expect.js": "~0.3.1",
"rewire": "~4.0.1",
"semver": "~5.5.0"
}
}