forked from node-cache/node-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.78 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "node-cache",
"description": "Simple and fast NodeJS internal caching. Node internal in memory cache like memcached.",
"keywords": [
"cache",
"caching",
"local",
"variable",
"multi",
"memory",
"internal",
"node",
"memcached",
"object"
],
"tags": [
"cache",
"caching",
"local",
"variable",
"multi",
"memory",
"internal",
"node",
"memcached",
"object"
],
"version": "5.1.2",
"author": "mpneuried <[email protected]>",
"maintainers": [
{
"name": "M. Peter",
"email": "[email protected]",
"url": "https://github.com/mpneuried"
},
{
"name": "Joshy",
"email": "[email protected]",
"url": "https://erdii.engineering/"
}
],
"main": "./index.js",
"types": "./index.d.ts",
"homepage": "https://github.com/node-cache/node-cache",
"repository": {
"type": "git",
"url": "git://github.com/node-cache/node-cache.git"
},
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"test": "nyc --require coffee-script/register mocha _src/test/mocha_test.coffee -R spec && tsc",
"build": "grunt build",
"export-coverage": "nyc report --reporter=text-lcov > lcov.info"
},
"dependencies": {
"clone": "2.x"
},
"devDependencies": {
"@types/node": "^8.9.4",
"coffee-coverage": "^3.0.1",
"coffee-script": "1.x",
"coveralls": "^3.0.3",
"grunt": "^1.0.4",
"grunt-banner": "0.6.x",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "1.0.x",
"grunt-contrib-coffee": "^2.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-include-replace": "3.2.x",
"grunt-mocha-cli": "^6.0.0",
"grunt-run": "^0.8.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"should": "11.x",
"typescript": "^4.2.4"
}
}