-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "@hyper-hyper-space/pulsar",
"version": "0.0.2",
"description": "The Web Blockchain (powered by Hyper Hyper Space).",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"source": "src/index.ts",
"repository": "https://github.com/hyperhyperspace/pulsar.git",
"author": "José Orlicki, Santiago Bazerque",
"license": "MIT",
"types": "dist/index.d.ts",
"private": false,
"devDependencies": {
"@hyper-hyper-space/core": "0.12.0",
"@types/node": "^14.14.31",
"jest": "^26.6.3",
"ts-jest": "^26.5.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@subspace/vdf": "^0.1.0",
"ts-command-line-args": "^2.1.0",
"tslib": "^2.3.1"
},
"peerDependencies": {
"@hyper-hyper-space/core": "0.12.0"
},
"scripts": {
"build": "npx tsc",
"clean": "rm -rf ./decl/* ./dist/*",
"winclean": "if exist decl (rmdir decl /s /q) && mkdir decl && if exist dist (rmdir dist /s /q) && mkdir dist",
"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"
}
}
}
}