UNPKG

1.27 kBJSONView Raw
1{
2 "name": "decache",
3 "version": "4.3.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 },
11 "repository": {
12 "type": "git",
13 "url": "git+https://github.com/dwyl/decache.git"
14 },
15 "keywords": [
16 "delete",
17 "node.js",
18 "require",
19 "cache",
20 "uncache",
21 "un-require"
22 ],
23 "author": "@besarthoxhaj, @jupiter & @nelsonic (with help from StackOverflow)",
24 "license": "MIT",
25 "bugs": {
26 "url": "https://github.com/dwyl/decache/issues"
27 },
28 "homepage": "https://github.com/dwyl/decache#readme",
29 "directories": {
30 "test": "test"
31 },
32 "devDependencies": {
33 "istanbul": "^0.4.4",
34 "pre-commit": "^1.1.3",
35 "tap-spec": "^4.1.1",
36 "tape": "^4.6.0"
37 },
38 "pre-commit": [
39 "coverage"
40 ],
41 "dependencies": {
42 "callsite": "^1.0.0"
43 }
44}