-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (55 loc) · 1.53 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
{
"name": "@hyper-hyper-space/pulsar-node",
"version": "0.0.1",
"description": "NodeJs adaptors for Pulsar - The Web Blockchain.",
"main": "dist/index.js",
"repository": "https://github.com/hyperhyperspace/pulsar-node.git",
"author": "José Orlicki, Santiago Bazerque",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/node": "^14.14.31",
"jest": "^26.6.3",
"ts-jest": "^26.5.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@hyper-hyper-space/core": "0.12.0",
"@hyper-hyper-space/node-env": "^0.12.0",
"@hyper-hyper-space/sqlite": "0.1.0",
"@hyper-hyper-space/pulsar": "0.0.2",
"@hyper-hyper-space/node-rsa": "0.1.0",
"@subspace/vdf": "^0.1.0",
"ts-command-line-args": "^2.1.0",
"tslib": "^2.3.1"
},
"peerDependencies": {
},
"scripts": {
"build": "npx tsc",
"clean": "rm -rf ./decl/* ./dist/*",
"winclean": "if exist dist (rmdir dist /s /q) && mkdir dist",
"start": "NODE_PATH=\"dist\" node ./dist/index.js",
"winstart": "./scripts/run.bat",
"windebug": "./scripts/debug.bat",
"test": "npx jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"verbose": true,
"modulePaths": [
"<rootDir>/test",
"<rootDir>/src",
"<rootDir>/node_modules/**"
],
"roots": [
"./test"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
}
}
}