-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.02 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
{
"name": "@heivo/cosmonaut",
"version": "0.3.1",
"description": "A CosmosDB query builder library for Node",
"author": "Ivo Heidelbach",
"license": "MIT",
"repository": "github:heivo/cosmonaut",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"engines": {
"node": ">=16"
},
"sideEffects": false,
"scripts": {
"test": "jest",
"lint": "eslint src",
"build": "tsup"
},
"peerDependencies": {
"@azure/cosmos": ">=3.16",
"typescript": ">=4.8"
},
"peerDependenciesMeta": {
"@azure/cosmos": {
"optional": true
},
"typescript": {
"optional": true
}
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
}
}