forked from ravendb/ravendb-nodejs-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.31 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
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
{
"name": "ravendb",
"version": "5.4.4",
"description": "RavenDB client for Node.js",
"files": [
"dist/"
],
"homepage": "https://ravendb.net",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "cross-os _test ",
"_test": {
"win32": "tsc -p tsconfig.test.json && copy test\\Assets\\* .test\\test\\Assets && mocha .test\\test",
"linux": "tsc -p tsconfig.test.json && cp test/Assets/* .test/test/Assets && mocha .test/test",
"darwin": "tsc -p tsconfig.test.json && cp test/Assets/* .test/test/Assets && mocha .test/test"
},
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"watch": "tsc --watch",
"watch:test": "tsc && tsc --watch -p tsconfig.test.json",
"test:debug": "cross-os _test:debug",
"_test:debug": {
"win32": "tsc && tsc -p tsconfig.test.json && copy test\\Assets\\* .test\\test\\Assets && mocha --inspect-brk .test\\test",
"linux": "tsc && tsc -p tsconfig.test.json && cp test/Assets/* .test/test/Assets && mocha --inspect-brk .test/test"
},
"lint": "eslint {src,test}/**/*.ts",
"check-exports": "node ./scripts/reportMissingTopLevelExports.js",
"check-imports": "node scripts/clearGlobalExports.js && tsc -p tsconfig.imports-check.json",
"coverage": "tsc -p tsconfig.test.json && copy test\\Assets\\* .test\\test\\Assets && nyc --exclude=.test/test/** --reporter=html --reporter=text mocha .test\\test"
},
"repository": {
"type": "git",
"url": "https://github.com/ravendb/ravendb-nodejs-client"
},
"bugs": {
"email": "support@ravendb.net",
"url": "http://issues.hibernatingrhinos.com"
},
"contributors": [
"Hibernating Rhinos"
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"ravendb",
"ravendb-client",
"typescript",
"node",
"nodejs",
"nosql"
],
"author": "Hibernating Rhinos",
"license": "MIT",
"devDependencies": {
"@types/md5": "^2.3.2",
"@types/mocha": "^10.0.3",
"@types/pluralize": "0.0.29",
"@types/rimraf": "^4.0.5",
"@types/sinon": "^17.0.3",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"cross-os": "^1.5.0",
"eslint": "^8.57.0",
"eslint-plugin-unicorn": "^54.0.0",
"glob": "^11.0.0",
"http-proxy-agent": "^7.0.2",
"lodash.orderby": "^4.6.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"open": "^10.1.0",
"rimraf": "^6.0.1",
"sinon": "^17.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"unzipper": "^0.10.11"
},
"dependencies": {
"@types/node": "^18.7.7",
"@types/node-fetch": "^2.6.2",
"@types/qs": "^6.9.7",
"@types/semaphore": "^1.1.0",
"@types/stream-json": "^1.7.2",
"@types/uuid": "^9.0.8",
"@types/verror": "^1.10.6",
"@types/ws": "^8.5.10",
"change-case": "^3.1.0",
"form-data": "^4.0.0",
"md5": "^2.3.0",
"moment": "^2.29.4",
"node-fetch": "^2.6.7",
"object.entries": "^1.1.5",
"object.values": "^1.1.5",
"pluralize": "^4.0.0",
"qs": "^6.11.0",
"readable-stream": "^3.6.0",
"safe-memory-cache": "^2.0.0",
"semaphore": "^1.1.0",
"stream-json": "^1.7.4",
"uuid": "^9.0.1",
"verror": "^1.10.1",
"ws": "^8.16.0",
"xregexp": "^5.1.1"
}
}