-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "@uc-engg/flash",
"version": "1.0.1",
"description": "A generic caching layer",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:urbanclap-engg/flash.git"
},
"files": [
"/dist"
],
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' nyc mocha -r ts-node/register 'test/**/*.ts'",
"prepare": "rm -rf dist && npx tsc"
},
"dependencies": {
"@uc-engg/armor": "1.0.0",
"@uc-engg/logging-repo": "^1.0.0",
"@uc-engg/mycroft": "^1.0.0",
"ioredis": "^5.0.0",
"lodash": "^3.10.0",
"mocha": "^10.1.0",
"moment": "^2.10.5",
"nyc": "^15.1.0",
"snappy": "6.2.3",
"ts-node": "^10.9.1",
"typescript": "~4.5.0"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/mocha": "^10.0.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"husky": "^8.0.2",
"proxyquire": "^1.8.0",
"sinon": "^3.2.1"
},
"keywords": [
"caching",
"redis",
"memcached"
],
"husky": {
"hooks": {
"pre-commit": "npm run test;"
}
},
"author": "UrbanClap Technologies India Pvt. Ltd.",
"license": "MIT"
}