-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "ordered-lock",
"version": "0.1.6",
"description": "Minimalist single thread ordered lock for distributed clients.",
"repository": "https://github.com/makeflow/ordered-lock.git",
"author": "Chengdu Mufan Technology Co., Ltd.",
"license": "MIT",
"main": "bld/client/index.js",
"types": "bld/client/index.d.ts",
"bin": {
"ordered-lock-server": "bld/server-cli/main.js"
},
"files": [
"src",
"bld",
"!src/test",
"!bld/test",
"!*.tsbuildinfo"
],
"scripts": {
"build": "rimraf bld && tsc --build tsconfig.json",
"lint": "run-in-every eslint-project --echo --parallel -- eslint --config {configFileName} .",
"lint-prettier": "prettier --list-different \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "yarn lint-prettier && yarn build && yarn lint && jest"
},
"devDependencies": {
"@magicspace/configs": "^0.2.5",
"@magicspace/eslint-plugin": "^0.1.31",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.19",
"@types/uuid": "^8.0.0",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"run-in-every": "^0.1.3",
"typescript": "^3.9.6"
},
"dependencies": {
"debug": "^4.1.1",
"socket-jet": "^0.2.5",
"uuid": "^8.2.0",
"villa": "^0.3.2"
}
}