-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "nstarter-lock",
"version": "0.3.0",
"description": "Mutex/Semaphore for Project NStarter.",
"repository": {
"type": "git",
"url": "git+https://github.com/jiandaoyun/nstarter.git",
"directory": "packages/plugin-lock"
},
"author": "[email protected]",
"license": "UNLICENSED",
"keywords": [
"FineX",
"NStarter",
"Mutex",
"Semaphore"
],
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.json && tsc --build tsconfig.esm.json",
"test": "c8 node --require ts-node/register ./bin/test.ts",
"eslint": "eslint --ext .js,.ts --fix ./src",
"upload": "npm-publish ./"
},
"exports": {
".": {
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"development": "./src/index.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"redis-semaphore": "5.6.0"
},
"peerDependencies": {
"ioredis": "^5.4.0"
},
"devDependencies": {
"@japa/assert": "1.4.1",
"@japa/run-failed-tests": "1.1.1",
"@japa/runner": "2.5.1",
"@japa/spec-reporter": "1.3.3",
"c8": "8.0.1",
"ioredis": "5.4.0"
},
"files": [
"dist/**/*",
"src/**/*",
"README.md"
],
"c8": {
"reporter": [
"text-summary"
]
}
}