-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
66
{
"name": "splinterlands-dhive-sl",
"version": "1.0.29",
"description": "An interface to the Hive blockchain which supports multi-node redundancy for high availability systems. Fork of dhive.",
"main": "dist/dhive-sl.js",
"module": "dist/dhive-sl.esm.js",
"typings": "dist/dhive-sl.d.ts",
"browser": {
"./dist/dhive-sl.js": "./dist/dhive-sl.js",
"./dist/dhive-sl.esm.js": "./dist/dhive-sl.esm.js"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run lint:fix && npm run build",
"build": "npm run build:clear && rollup -c",
"build:watch": "tsc -w",
"build:clear": "rimraf dist && rimraf tsconfig.tsbuildinfo",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"start": "node -r dotenv/config dist/index.js",
"test": "LOGGING_LEVEL=0 jest",
"test:int": "NODE_ENV=test jest -c jest.config.int.js --runInBand --detectOpenHandles",
"test:unit": "ts-jest -c jest.config.ts --watchAll --maxWorkers=1",
"test:watch": "ts-jest -c jest.config.int.js --silent --watchAll --detectOpenHandles",
"example:beacon": "NODE_ENV=development ts-node-dev --tree-kill --no-notify --respawn --transpile-only src/example/beacon.example.ts",
"dev": "NODE_ENV=development ts-node-dev --tree-kill --no-notify --respawn --transpile-only src/index.ts"
},
"author": "reichert-splinterlands",
"license": "BSD-3-Clause-No-Military-License",
"dependencies": {
"bigi": "^1.4.2",
"browserify-aes": "^1.2.0",
"bs58": "^5.0.0",
"bytebuffer": "^5.0.1",
"cross-fetch": "^3.1.5",
"ecurve": "^1.0.6",
"jsbi": "^4.3.0",
"secp256k1": "^4.0.3",
"secure-random": "^1.1.2",
"verror": "^1.10.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/ecurve": "^1.0.0",
"@types/jest": "^28.1.2",
"@types/node": "^18.0.0",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"lorem-ipsum": "^2.0.8",
"prettier": "^2.7.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-polyfill-node": "^0.9.0",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}