-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.94 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
73
74
75
76
77
{
"name": "slim-cache",
"version": "1.1.1",
"description": "Super Fast Lightweight Cache with a Map like interface",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/nivrith/slim-cache",
"author": "Nivrith <nivrithgomatam@gmail.com>",
"license": "MIT",
"keywords": [
"cache",
"memoize",
"caching",
"perf",
"performance",
"optimizations",
"optimize",
"slim-cache",
"fast-cache"
],
"scripts": {
"compile": "npm run clean && tsc -b",
"start": "yarn compile && node dist/src/index",
"test": "nyc mocha --require ts-node/register test/**/*.spec.ts",
"prepublishOnly": "npm run compile",
"pretest": "npm run clean && npm run compile",
"clean": "del-cli dist",
"release": "npx np",
"docs": "typedoc src",
"trace": "tsc -b && node --trace-deopt --trace-opt --runtime_call_stats --trace_ic --trace_ic",
"devtools": "node --inspect --inspect-brk",
"benchmark": "tsc -b && node"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"lines": 80,
"exclude": [
"test",
"docs",
"dist",
"benchmark"
],
"check-coverage": true
},
"files": [
"dist/src/**/*"
],
"dependencies": {},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/cli-table2": "^0.2.2",
"@types/mocha": "^5.2.7",
"@types/ora": "^3.2.0",
"@types/typescript": "^2.0.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"cli-table2": "^0.2.0",
"del-cli": "^2.0.0",
"fast-memoize": "^2.5.1",
"logdown": "^3.2.8",
"map-cache": "^0.2.2",
"microtime": "^3.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ora": "^3.4.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.2"
}
}