-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 906 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
40
41
42
{
"author": {
"email": "[email protected]",
"name": "Jorge Fuentes",
"url": "http://llorxscript.blogspot.com.es"
},
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc"
},
"devDependencies": {
"@types/node": "^6.0.46"
},
"optionalDependencies": {
"chokidar": "^1.6.1"
},
"dependencies": {
"custom-require": "^0.1.7"
},
"description": "Require a module and receive a callback each time the module or one of his dependencies has been modified",
"keywords": [
"override",
"require",
"module",
"custom",
"function",
"watcher"
],
"license": "MIT",
"main": "./dist/WatcherRequire.js",
"types": "./dist/WatcherRequire.d.ts",
"name": "watcher-require",
"repository": {
"type": "git",
"url": "https://github.com/llorx/watcher-require"
},
"version": "0.3.0"
}