-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
{
"name": "@klw/node-sequential-promises",
"description": "A tiny script to run async functions aka promises one after the other",
"version": "0.9.1",
"author": {
"name": "Karl Ludwig Weise",
"url": "https://ludwigweise.de"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "yarn build",
"precommit": "yarn format",
"preversion": "yarn lint",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karlludwigweise/node-sequential-promises.git"
},
"keywords": [
"node",
"promise",
"async",
"sequence"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"license": "MIT",
"homepage": "https://github.com/karlludwigweise/node-sequential-promises",
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.1",
"prettier": "^3.8.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}