-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
56
57
58
59
60
61
62
63
{
"name": "array-async-utils",
"version": "1.0.1",
"description": "Array map, flatMap, filter, reduce, etc. with async callback and predicate",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"author": "Lorenzo Zottar <[email protected]>",
"license": "MIT",
"keywords": [
"array",
"async",
"map",
"flatMap",
"filter",
"reduce"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lordgiotto/array-async-utils"
},
"bugs": {
"url": "https://github.com/lordgiotto/array-async-utils/issues"
},
"homepage": "https://github.com/lordgiotto/array-async-utils/",
"scripts": {
"prepare": "husky",
"build": "run-p build:*",
"build:cjs": "tsc -p ./tsconfig.build.json --module commonJS --outDir ./dist/cjs",
"build:esm": "tsc -p ./tsconfig.build.json --module esnext --outDir ./dist/esm",
"prebuild": "run-s clean:build",
"clean:build": "rimraf ./dist",
"test": "jest",
"test:ui": "majestic",
"check:all": "run-p -c -l check:ts check:lint check:prettier",
"check:ts": "tsc --noEmit --pretty",
"check:lint": "eslint --color .",
"check:prettier": "prettier -u --check .",
"check:all:staged": "lint-staged",
"fix:lint": "eslint ./src --fix",
"fix:prettier": "prettier -u --write ."
},
"files": [
"README.md",
"CHANGELOG.md",
"/dist"
],
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"majestic": "^1.8.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}