-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "async-sema",
"version": "3.1.1",
"description": "Semaphore using `async` and `await`",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/async-sema.git"
},
"author": "Olli Vanhoja",
"keywords": [
"semaphore",
"async",
"await"
],
"homepage": "https://github.com/vercel/async-sema",
"bugs": {
"url": "https://github.com/vercel/async-sema/issues"
},
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint:staged": "lint-staged",
"prepublishOnly": "yarn build",
"prettier": "prettier --write --single-quote './{src,test}/**/*.ts'",
"test": "jest"
},
"devDependencies": {
"@types/jest": "27.0.1",
"@types/node": "16.6.1",
"jest": "27.0.6",
"lint-staged": "11.1.2",
"pre-commit": "1.2.2",
"prettier": "2.3.2",
"ts-jest": "27.0.4",
"typescript": "4.3.5"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.{js,ts}": [
"prettier --write --single-quote",
"git add"
]
},
"jest": {
"preset": "ts-jest",
"verbose": false,
"testURL": "http://localhost/"
}
}