UNPKG

1.17 kBJSONView Raw
1{
2 "name": "async-sema",
3 "version": "3.1.0",
4 "description": "Semaphore using `async` and `await`",
5 "repository": {
6 "type": "git",
7 "url": "git+https://github.com/zeit/async-sema.git"
8 },
9 "author": "Olli Vanhoja",
10 "keywords": [
11 "semaphore",
12 "async",
13 "await"
14 ],
15 "homepage": "https://github.com/zeit/async-sema",
16 "bugs": {
17 "url": "https://github.com/zeit/async-sema/issues"
18 },
19 "license": "MIT",
20 "files": [
21 "lib"
22 ],
23 "main": "lib/index.js",
24 "scripts": {
25 "build": "tsc",
26 "lint:staged": "lint-staged",
27 "prepublishOnly": "yarn build",
28 "prettier": "prettier --write --single-quote './{src,test}/**/*.ts'",
29 "test": "jest"
30 },
31 "devDependencies": {
32 "@types/jest": "24.0.18",
33 "@types/node": "12.7.5",
34 "jest": "24.9.0",
35 "lint-staged": "9.2.5",
36 "pre-commit": "1.2.2",
37 "prettier": "1.18.2",
38 "ts-jest": "24.1.0",
39 "typescript": "3.6.3"
40 },
41 "pre-commit": "lint:staged",
42 "lint-staged": {
43 "*.{js,ts}": [
44 "prettier --write --single-quote",
45 "git add"
46 ]
47 },
48 "jest": {
49 "preset": "ts-jest",
50 "verbose": false,
51 "testURL": "http://localhost/"
52 }
53}