-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
66 lines (66 loc) · 1.52 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
64
65
66
{
"name": "@supercharge/collections",
"description": "async/await-ready array methods for JavaScript and Node.js",
"version": "5.0.1",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/collections/issues"
},
"dependencies": {
"@supercharge/queue-datastructure": "~2.1.0"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~4.0.0",
"@supercharge/tsconfig": "~7.0.0",
"c8": "~8.0.1",
"eslint": "~8.53.0",
"expect": "~29.7.0",
"typescript": "~5.2.2",
"uvu": "~0.5.6"
},
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/collections",
"keywords": [
"async/await",
"async",
"await",
"arrays",
"iteration",
"map",
"filter",
"reduce",
"forEach",
"chainable",
"collection",
"supercharge",
"superchargejs"
],
"license": "MIT",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/collections.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"test": "npm run build && npm run lint && npm run test:run ",
"test:run": "c8 --include=dist uvu --ignore helpers",
"posttest": "c8 report --reporter=html"
},
"type": "module",
"types": "dist"
}