-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "array-aggregate",
"version": "1.2.0",
"description": "Mongo-like aggregate for arrays",
"main": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
}
},
"scripts": {
"prepublish": "in-publish && yarn run dist || echo 'Bad mode'",
"lint": "eslint src/**/*.ts",
"dist": "tsup",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arilas/array-aggregate.git"
},
"keywords": [
"aggregate",
"array",
"mongo"
],
"author": "Alex Grand <alex@granted.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Arilas/array-aggregate/issues"
},
"homepage": "https://github.com/Arilas/array-aggregate#readme",
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@types/mongodb": "^4.0.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitest/coverage-v8": "2.1.4",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"in-publish": "^2.0.1",
"mongodb": "^6.10.0",
"monk": "^7.3.4",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "5.6.3",
"typescript-eslint": "^8.13.0",
"uuid": "^11.0.2",
"vitest": "^2.1.4"
},
"packageManager": "yarn@4.5.1"
}