-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 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
{
"name": "@wishcore/wish-sdk",
"version": "0.4.0-beta-18",
"description": "Wish API for node. Used for building Wish Apps.",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/WishCore/wish-api-node.git"
},
"keywords": [
"wish",
"api",
"security",
"peer-to-peer"
],
"author": "André Kaustell <andre.kaustell@wishtech.fi>",
"license": "Apache-2.0",
"dependencies": {
"@wishcore/wish-rpc": "0.6.12",
"bson-buffer": "1.0.2"
},
"devDependencies": {
"@types/expect": "1.20.3",
"@types/joi": "14.3.4",
"@types/mocha": "8.2.0",
"@types/node": "14.14.21",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"ts-node": "10.4.0",
"typescript": "4.5.2"
},
"scripts": {
"test": "mocha --exit -r ts-node/register test/**/*.spec.ts",
"test-only": "mocha --exit -r ts-node/register",
"coverage": "nyc mocha --exit -r ts-node/register -r source-map-support/register test/**/*.spec.ts",
"prepare": "tsc"
}
}