-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "@orbifold/projections",
"author": {
"email": "info@orbifold.net",
"name": "Orbifold Consulting (Francois Vanderseypen)",
"url": "https://orbifold.net"
},
"description": "Mongo projection parsing to AST so it can be used towards other purposes.",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/Qwiery/qwiery-projections.git"
},
"bugs": {
"url": "https://github.com/Qwiery/qwiery-projections/issues",
"email": "info@orbifold.net"
},
"engines": {
"node": ">=21"
},
"private": false,
"version": "4.0.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui --coverage",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@vitest/coverage-v8": "^1.0.1",
"@vitest/ui": "^1.0.1",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.1",
"jscrypto": "1.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"@faker-js/faker": "^8.0.2"
}
}