forked from ide/await-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"name": "await-lock",
"version": "2.2.2",
"description": "Mutex locks for async functions",
"main": "build/AwaitLock.js",
"types": "build/AwaitLock.d.ts",
"type": "module",
"files": [
"build",
"src",
"!build/**/__tests__",
"!src/**/__tests__"
],
"scripts": {
"clean": "rm -rf build",
"build": "tsc",
"lint": "tsc --noEmit",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ide/await-lock.git"
},
"keywords": [
"async",
"await",
"lock",
"es2017",
"co",
"yield",
"generator",
"promise"
],
"author": "James Ide",
"license": "MIT",
"bugs": {
"url": "https://github.com/ide/await-lock/issues"
},
"homepage": "https://github.com/ide/await-lock",
"jest": {
"coverageDirectory": "<rootDir>/..",
"rootDir": "src"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/co": "^4.6.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"babel-jest": "^27.0.6",
"co": "^4.6.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"typescript": "^4.6.3"
}
}