-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.63 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.63 KB
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
{
"name": "@codedv8/inmemcache",
"version": "1.1.0",
"description": "inmemcache is a memory based local cache",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"example-basic": "npm run build && node ./dist/examples/basic.js",
"example-simple": "npm run build && node ./dist/examples/simple.js",
"test": "mocha -r ts-node/register --recursive './src/tests/*.test.ts' --timeout 15000 --exit",
"test:coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codedeviate/inmemcache.git"
},
"keywords": [
"cache",
"memory"
],
"nyc": {
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 98,
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/",
"dist/",
"src/examples/**",
"**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"sourceMap": true,
"instrument": true,
"cache": true,
"all": true,
"check-coverage": true
},
"author": "Thomas Björk",
"license": "ISC",
"bugs": {
"url": "https://github.com/codedeviate/inmemcache/issues"
},
"homepage": "https://github.com/codedeviate/inmemcache#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/events": "^3.0.0",
"@types/jest": "^29.2.6",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}