-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "@hyper-hyper-space/node-rsa",
"version": "0.1.0",
"description": "Adaptor for using the NodeRSA library, instead of the WebCrypto replacement, when Hyper Hyper Space in Node.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/hyperhyperspace/hyperhyperspace-node-rsa.git"
},
"author": "Santiago Bazerque",
"license": "MIT",
"private": false,
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"clean": "rm -rf ./dist/*",
"winclean": "if exist dist (rmdir dist /s /q) && mkdir dist",
"test": "npx jest"
},
"devDependencies": {
"@hyper-hyper-space/core": "0.12.0",
"@hyper-hyper-space/node-env": "0.12.0",
"typescript": "^4.3.5",
"@types/node-rsa": "^1.1.0",
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"ts-jest": "^26.4.4"
},
"dependencies": {
"node-rsa": "^1.1.1",
"tslib": "^2.3.1"
},
"peerDependencies": {
"@hyper-hyper-space/core": "0.12.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"verbose": true,
"modulePaths": [
"<rootDir>/test",
"<rootDir>/src",
"<rootDir>/node_modules/**"
],
"roots": [
"./test"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
}
}