-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "asc",
"description": "A middleware layer between a service and a client. The service could be an in-process library, a file, an external web service, anything. Any time the results from a resource call can be cached, you can use ASC as a proxy to that resource.",
"version": "2.1.5",
"author": "Anthony Hildoer <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/bluerival/asc.git"
},
"types": "types/index.d.ts",
"scripts": {
"test-watch": "node ./node_modules/mocha/bin/mocha.js -b -u bdd -w --exit test/*.test.js",
"test": "node ./node_modules/mocha/bin/mocha.js -b -u bdd --exit test/*.test.js"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint": "^9.6.0",
"@types/mocha": "^10.0.7",
"eslint": "^9.8.0",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^15.8.0",
"mocha": "10.7.0"
},
"keywords": [
"cache",
"service proxy",
"ttl cache",
"batch lookup"
],
"engines": {
"node": ">=16.10.0"
},
"files": [
"index.js",
"lib",
"LICENSE",
"package-lock.json",
"package.json",
"README.md",
"types"
],
"license": "MIT"
}