-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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": "@blindnet/sdk-node",
"version": "0.0.2",
"description": "The JavaScript server SDK for blindnet.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"clean": "rimraf lib",
"prepare": "husky install",
"test": "./node_modules/mocha/bin/mocha --reporter spec --require ts-node/register test/**/*.test.ts",
"build": "npm run clean && ./node_modules/typescript/bin/tsc"
},
"keywords": [
"blindnet"
],
"author": "blindnet",
"homepage": "https://blindnet.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blindnet-io/blindnet-sdk-node.git"
},
"bugs": {
"url": "https://github.com/blindnet-io/blindnet-sdk-node/issues"
},
"dependencies": {
"base64url": "^3.0.1",
"noble-ed25519": "^1.2.1",
"node-fetch": "^2.6.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.5.10",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"husky": "^7.0.1",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}