-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 969 Bytes
/
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
{
"name": "memorija",
"version": "1.1.0",
"description": "In-memory object cache with TTL support and Map-compatible interface",
"keywords": [
"in-memory",
"object",
"cache",
"ttl",
"expiration",
"drop-in",
"replacement",
"map",
"map-compatible",
"typescript"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"prebuild": "rimraf build/",
"build": "tsc -p .",
"prepublish": "npm run build"
},
"author": {
"name": "Ivaylo Stoyanov",
"email": "me@ivkos.com",
"url": "https://github.com/ivkos"
},
"license": "Apache-2.0",
"homepage": "https://github.com/ivkos/memorija",
"bugs": {
"url": "https://github.com/ivkos/memorija/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivkos/memorija.git"
},
"devDependencies": {
"rimraf": "^2.6.2",
"typescript": "^2.5.3"
},
"engines": {
"node": ">=6.5.0"
}
}