forked from oracle/coherence-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "@oracle/coherence",
"version": "1.1.4",
"license": "UPL-1.0",
"main": "lib/index.js",
"keywords": [
"Oracle Coherence",
"Coherence",
"gRPC",
"node"
],
"repository": "https://github.com/oracle/coherence-js-client",
"dependencies": {
"@grpc/proto-loader": "^0.6",
"@grpc/grpc-js": "^1.6",
"google-protobuf": "^3.20"
},
"devDependencies": {
"grpc-tools": "^1.11.1",
"@types/google-protobuf": "^3.15",
"glob-parent": ">=5.1.2",
"grpc_tools_node_protoc_ts": "^5.3",
"mocha": "^10.0",
"nyc": "^15.0.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.8",
"typescript": "^4.7"
},
"scripts": {
"grpc": "bin/npm-post-install.sh",
"compile": "tsc -p src",
"full-clean": "npm run clean; rm -rf node_modules",
"clean": "rm -rf lib docs coverage .nyc_output oracle-*tgz",
"test": "npm run compile; mocha 'test/**.js' --recursive",
"coh-up": "bin/docker-utils.sh -u",
"coh-down": "bin/docker-utils.sh -d",
"coh-clean": "bin/docker-utils.sh -c",
"coverage": "nyc mocha 'test/**.js'",
"wait": "sleep 30",
"dist": "npm run compile; typedoc; npm pack",
"prepare": "bin/npm-post-install.sh"
}
}