-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 KB
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": "clear-require-cache",
"version": "0.1.5",
"description": "Watch files and clear them from `require.cache` whenever changes are made.",
"main": "./index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bump": "export _npm_pkg_v_last=$npm_package_version && npm version",
"version": "sed -e \"s|$_npm_pkg_v_last|$npm_package_version|g\" -i '' README.md && git add README.md",
"postversion": "git push && git push --tags"
},
"bin": {
"clearcache": "./bin/clearcache.js"
},
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SapientNitroLA/clear-require-cache.git"
},
"bugs": {
"url": "https://github.com/SapientNitroLA/clear-require-cache/issues"
},
"keywords": [
"clear",
"cache",
"decache",
"del",
"delcache",
"delete",
"derequire",
"module",
"purge",
"refesh",
"require",
"remove",
"uncache",
"uncached",
"unrequire"
],
"author": "Ryan Fitzer",
"license": "MIT",
"dependencies": {
"chokidar": "^1.5.2",
"commander": "^2.9.0",
"globby": "^6.0.0"
},
"devDependencies": {
"eslint": "^3.4.0"
}
}