-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "async-short-circuit",
"version": "1.2.1",
"description": "Short circuit logic for boolean promises",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": "https://github.com/AmrSaber/async-short-circuit",
"author": "AmrSaber",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/ tests/",
"bump:major": "npm version major --no-git-tag-version",
"bump:minor": "npm version minor --no-git-tag-version",
"bump:patch": "npm version patch --no-git-tag-version",
"postversion": "git add -- package.json package-lock.json && git commit -m \":arrow_up: Bump version to $npm_package_version\" && git tag \"v$npm_package_version\""
},
"keywords": [
"async",
"promises",
"short",
"circuit",
"short-circuit",
"logic",
"boolean",
"and",
"or"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"faker": "^5.5.3",
"jest": "^27.0.4"
},
"engines": {
"node": ">=8.x.x"
}
}