-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 787 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 787 Bytes
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
{
"name": "op-cache",
"version": "1.0.0",
"description": "A simple, Map based cache with optional persistence",
"author": {
"name": "Jake Adler",
"url": "https://jakeadler.xyz"
},
"main": "dist/op-cache.js",
"types": "dist/op-cache.d.ts",
"scripts": {
"test": "ava"
},
"ava": {
"concurrency": 5,
"files": [
"test/**/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"license": "MIT",
"devDependencies": {
"@types/mock-fs": "^4.13.0",
"@types/node": "^14.14.19",
"ava": "^3.15.0",
"mock-fs": "^4.13.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}