-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
{
"name": "many-promises",
"version": "0.2.0",
"description": "Tool for managing sequential, parallel and a mix of those calculations using Promises in Javascript",
"main": "./lib/index.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "npm run lint && npm run typecheck && jest --config jestconfig.json",
"lint": "eslint ./src ./tests --ext .ts",
"prepublishOnly": "npm run test && npm run build",
"typecheck": "tsc --noEmit",
"build": "tsc",
"preversion": "npm run test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grumd/many-promises.git"
},
"files": [
"lib/**/*",
"src/**/*"
],
"keywords": [
"promise",
"promises",
"mass",
"multiple",
"parallel",
"sequential",
"scheduler",
"simultaneous",
"jobs",
"array"
],
"author": "grumd",
"license": "MIT",
"bugs": {
"url": "https://github.com/grumd/many-promises/issues"
},
"homepage": "https://github.com/grumd/many-promises#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.5.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}