-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "@blindnet/sdk-javascript",
"version": "0.3.1",
"description": "The javascript web client SDK for blindnet.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.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 && rollup -c"
},
"keywords": [
"blindnet",
"sdk"
],
"author": "blindnet",
"homepage": "https://blindnet.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blindnet-io/blindnet-sdk-js.git"
},
"bugs": {
"url": "https://github.com/blindnet-io/blindnet-sdk-js/issues"
},
"dependencies": {
"idb-keyval": "^5.0.5",
"noble-ed25519": "^1.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.1",
"@types/mocha": "^8.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"husky": "^6.0.0",
"mocha": "^9.2.0",
"mockttp": "^2.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-loader": "^8.1.0",
"ts-node": "^9.1.1",
"tslib": "^1.9.3",
"typescript": "^4.2.4",
"uuid": "^8.3.2",
"web-file-polyfill": "^1.0.1"
}
}