UNPKG

1.39 kBJSONView Raw
1{
2 "name": "decache",
3 "version": "3.1.0",
4 "description": "decache (Delete Cache) lets you delete modules from node.js require() cache; useful when testing your modules/projects.",
5 "main": "decache.js",
6 "scripts": {
7 "nocov": "./node_modules/tape/bin/tape ./test/test.js",
8 "test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js",
9 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
10 "jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore ."
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/dwyl/decache.git"
15 },
16 "keywords": [
17 "delete",
18 "node.js",
19 "require",
20 "cache",
21 "uncache",
22 "un-require"
23 ],
24 "author": "@besarthoxhaj & @nelsonic (with help from StackOverflow)",
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/dwyl/decache/issues"
28 },
29 "homepage": "https://github.com/dwyl/decache#readme",
30 "directories": {
31 "test": "test"
32 },
33 "devDependencies": {
34 "istanbul": "^0.4.2",
35 "jshint": "^2.9.1",
36 "pre-commit": "^1.1.2",
37 "tap-spec": "^4.1.1",
38 "tape": "^4.4.0"
39 },
40 "pre-commit": [
41 "jshint",
42 "coverage"
43 ],
44 "dependencies": {
45 "find": "^0.2.4"
46 }
47}