-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "quicache",
"version": "3.0.0",
"description": "A simple key-value cache for Javascript applications",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register ./**/*.spec.ts",
"test-coverage": "nyc --reporter=text mocha -r ts-node/register ./**/*.spec.ts",
"dev": "tsc --watch",
"build": "tsc",
"build:docs": "yarn typedoc --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChronSyn/quicache.git"
},
"keywords": [
"cache",
"typescript",
"key",
"value",
"javascript",
"ts"
],
"author": "Scott Pritchard",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChronSyn/quicache/issues"
},
"homepage": "https://github.com/ChronSyn/quicache#readme",
"dependencies": {
"date-fns": "^2.16.1"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/chai": "^4.2.14",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"chai-interface": "^2.0.3",
"jsdoc-babel": "^0.5.0",
"jsdoc-md": "^3.0.0",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
}
}