-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "runtime-memcache",
"version": "3.1.0",
"description": "A no dependency javascript runtime key-value cache store for small chunks of arbitrary data (strings, objects, numbers)",
"homepage": "https://github.com/tusharf5/runtime-memcache",
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/tusharf5/runtime-memcache"
},
"author": {
"name": "Tushar Sharma",
"email": "ts17995@gmail.com",
"url": "https://tusharsharma.dev"
},
"scripts": {
"test": "yarn build && jest --detectOpenHandles",
"dev": "yarn build && yarn test",
"lint": "eslint 'src/**/*.{ts}' 'tests/**/*.{ts}'",
"format": "npx prettier --write '**/*.{ts,js,json}'",
"build": "webpack --mode=production",
"prebuild": "rm -rf dist && tsc -p . && rm -rf dist/tests && rm -rf dist/src",
"prepublish": "npm run build && npm run test"
},
"license": "MIT",
"keywords": [
"js cache",
"javascript cache",
"runtime cache",
"node cache",
"cache",
"memory cache",
"js hash",
"key store",
"lru",
"timeout",
"mru"
],
"devDependencies": {
"@types/jest": "~28.1.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "~5.30.0",
"@typescript-eslint/parser": "~5.30.0",
"babel-loader": "~8.2.0",
"copy-webpack-plugin": "11.0.0",
"eslint": "~8.20.0",
"eslint-config-airbnb": "~19.0.0",
"eslint-config-prettier": "~8.5.0",
"eslint-config-typescript": "~3.0.0",
"eslint-formatter-pretty": "~4.1.0",
"eslint-import-resolver-typescript": "~3.2.0",
"eslint-loader": "~4.0.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-prettier": "~4.2.0",
"eslint-plugin-typescript": "~0.14.0",
"jest": "~28.1.0",
"prettier": "~2.7.0",
"ts-node": "~10.9.0",
"typescript": "~4.6.2",
"typescript-eslint-parser": "~22.0.0",
"webpack": "~5.73.0",
"webpack-cli": "~4.10.0"
}
}