UNPKG

1.93 kBJSONView Raw
1{
2 "name": "node-cache",
3 "description": "Simple and fast NodeJS internal caching. Node internal in memory cache like memcached.",
4 "keywords": [
5 "cache",
6 "caching",
7 "local",
8 "variable",
9 "multi",
10 "memory",
11 "internal",
12 "node",
13 "memcached",
14 "object"
15 ],
16 "tags": [
17 "cache",
18 "caching",
19 "local",
20 "variable",
21 "multi",
22 "memory",
23 "internal",
24 "node",
25 "memcached",
26 "object"
27 ],
28 "version": "4.2.0",
29 "author": "mpneuried <mp@tcs.de>",
30 "maintainers": [
31 {
32 "name": "M. Peter",
33 "email": "mp@tcs.de",
34 "url": "https://github.com/mpneuried"
35 },
36 {
37 "name": "Joshy",
38 "email": "erdiicodes@gmail.com",
39 "url": "https://blog.werise.de/"
40 }
41 ],
42 "main": "./index.js",
43 "types": "./index.d.ts",
44 "homepage": "https://github.com/mpneuried/nodecache",
45 "repository": {
46 "type": "git",
47 "url": "git://github.com/mpneuried/nodecache.git"
48 },
49 "license": "MIT",
50 "engines": {
51 "node": ">= 0.4.6"
52 },
53 "scripts": {
54 "test": "COFFEECOV_INIT_ALL=false mocha --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul _src/test/mocha_test.coffee -R spec && tsc",
55 "test-docker": "SILENT_MODE=1 mocha test/mocha_test.js -R min && tsc",
56 "build": "grunt build"
57 },
58 "dependencies": {
59 "clone": "2.x",
60 "lodash": "4.x"
61 },
62 "devDependencies": {
63 "@types/node": "^8.9.4",
64 "coffee-coverage": "1.x",
65 "coffee-script": "1.x",
66 "coveralls": "2.x",
67 "grunt": "0.4.x",
68 "grunt-banner": "0.6.x",
69 "grunt-cli": "^1.2.0",
70 "grunt-contrib-clean": "1.0.x",
71 "grunt-contrib-coffee": "1.0.x",
72 "grunt-contrib-watch": "1.x",
73 "grunt-include-replace": "3.2.x",
74 "grunt-mocha-cli": "2.x",
75 "grunt-regarde": "0.1.x",
76 "grunt-run": "0.5.x",
77 "istanbul": "0.x",
78 "mocha": "3.x",
79 "should": "11.x",
80 "typescript": "^2.6.1"
81 }
82}