-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "minimum-lock",
"version": "1.0.1",
"description": "The only minimum async lock you need.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "rimraf dist && tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/hbinhng/minimum-lock.git"
},
"publishConfig": {
"access": "public"
},
"author": "Hai Binh Nguyen <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/hbinhng/minimum-lock/issues"
},
"homepage": "https://github.com/hbinhng/minimum-lock#readme",
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}