-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "zk-distributed-lock",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "gulp buildTest",
"build:prod": "gulp build",
"lint": "eslint -o ./jsLint.html -f html . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"audit": "npm audit",
"audit:fix": "npm audit fix",
"test": "mocha -r ts-node/register --allow-console-logs --reporter mochawesome src/__test__/*.unit.ts",
"testDebug": "mocha -r ts-node/register --inspect --allow-console-logs --reporter mochawesome src/__test__/*.unit.ts",
"test:exit": "npm run test -- --exit",
"testDebug:exit": "npm run testDebug -- --exit",
"test:ci": "nyc -r lcov -r text npm run test",
"test:ciexit": "nyc -r lcov -r text npm run test:exit"
},
"repository": {
"type": "git",
"url": "https://github.com/KunalBurangi/zk-distributed-lock"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"configuration": {
"default": {
"deviation": 10,
"documentSize": 2048
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"author": {
"name": "Kunal Burangi",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"@types/bson": "^4.0.3",
"bson": "^4.7.0",
"node-zookeeper-client": "^1.1.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node-zookeeper-client": "^0.2.8",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"chai": "^4.3.7",
"del": "^6.1.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^5.0.1",
"husky": "^8.0.2",
"merge-stream": "^2.0.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"sinon": "^15.0.0",
"source-map": "^0.7.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.5"
}
}