-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
53
54
55
56
{
"name": "findhit-hotplug",
"version": "0.0.6",
"description": "Hotplug is an universal plugin manager system for nodejs apps",
"main": "index.js",
"author": "José Moreira <[email protected]>",
"license": "GPL V3",
"contributors": [
{
"name": "José Moreira",
"email": "[email protected]"
},
{
"name": "Bruno Casanova",
"email": "[email protected]"
},
{
"name": "Gabriel Conceição",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "node node_modules/mocha/bin/mocha --globals setImmediate,clearImmediate --check-leaks --colors -t 10000 --reporter spec $(find test/* -name '*.test.js')"
},
"repository": {
"type": "git",
"url": "https://github.com/findhit/findhit-hotplug"
},
"dependencies": {
"findhit-evented": ">=0.0.3",
"findhit-process": ">=0.0.1",
"findhit-promise": ">=0.0.3",
"findhit-util": ">=0.2.0"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^1.21.3",
"sinon": "^1.10.3"
},
"keywords": [
"pluggable",
"plugin",
"system",
"universal",
"plug",
"hotplug",
"nodejs",
"findhit"
],
"bugs": {
"url": "https://github.com/findhit/findhit-hotplug/issues"
}
}