-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "node-distributed-debounce",
"version": "1.0.9",
"description": "debounce function for distributed system with redis and nodejs.",
"keywords": ["nodejs", "debounce", "distributed-system", "redis", "distributed"],
"repository": "git@github.com:RyosukeCla/node-distributed-debounce.git",
"engines": {
"node": ">=10.12.0"
},
"author": "RyosukeCla <ryosukeclarinet@gmail.com>",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"test": "ts-mocha --exit --ui tdd ./__tests__/*.ts",
"prettier": "npx prettier --write ./__tests__/**/*.ts ./src/**/*.ts",
"build": "tsc -p ./tsconfig.json",
"prepublish": "npm run test && npm run build"
},
"peerDependencies": {
"redis": ">= 2.x"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/redis": "^2.8.28",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"redis": "^3.0.2",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}