-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.76 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"bugs": {
"url": "https://jira.issues.couchbase.com/projects/JSCO/issues"
},
"description": "The official Couchbase Node.js Analytics Client Library.",
"engines": {
"node": ">=16"
},
"homepage": "https://www.couchbase.com/developers/sdks",
"keywords": [
"couchbase",
"analytics",
"libcouchbase",
"memcached",
"nosql",
"json",
"document"
],
"type": "module",
"main": "./dist/analytics.cjs",
"module": "./dist/analytics.js",
"types": "./dist/analytics.d.ts",
"exports": {
"import": {
"types": "./dist/analytics.d.ts",
"import": "./dist/analytics.js"
},
"require": {
"types": "./dist/analytics.d.cts",
"require": "./dist/analytics.cjs"
}
},
"license": "Apache-2.0",
"name": "couchbase-analytics",
"dependencies": {
"stream-json": "^1.9.1"
},
"overrides": {
"diff": "^9.0.0",
"serialize-javascript": "^7.0.5",
"js-yaml": "^4.2.0",
"esbuild": "^0.28.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^9.39.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/chai": "^5.2.3",
"@types/debug": "^4.1.13",
"@types/mocha": "^10.0.10",
"@types/node": "^20.14.5",
"@types/stream-json": "^1.7.8",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"chai": "^6.2.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.17.0",
"globals": "^15.14.0",
"ini": "^7.0.0",
"mocha": "^11.7.5",
"npm-check-updates": "^22.2.0",
"nyc": "^18.0.0",
"prettier": "^3.8.3",
"semver": "^7.8.0",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typescript": "^5.4.5",
"typescript-eslint": "^8.54.0",
"why-is-node-running": "^3.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/couchbaselabs/todo-add-here"
},
"version": "1.1.0-dev",
"config": {
"native": false
},
"scripts": {
"prepare": "npm run build && node ./scripts/copyCertificates.js",
"prepack": "node ./scripts/copyCertificates.js",
"build-docs": "typedoc",
"build": "tsup lib/analytics.ts --format cjs,esm --dts --clean --sourcemap",
"check-types": "npx --yes @arethetypeswrong/cli --pack .",
"test": "ts-mocha test/*.test.ts",
"cover": "nyc ts-mocha test/*.test.*",
"lint": "eslint ./lib/ --max-warnings=0",
"check-deps": "ncu"
},
"mocha": {
"loader": "ts-node/esm",
"recursive": true,
"extension": [
"js"
]
},
"files": [
"LICENSE",
"CONTRIBUTING.md",
"package.json",
"README.md",
"dist/**/*"
]
}