-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "js-polo",
"version": "0.1.4",
"description": "js-polo is the JS/TS implementation of the POLO Serialization Format.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --env=node --colors --coverage --collectCoverageFrom='src/**/*.ts'",
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"build": "tsc -p tsconfig.json",
"benchmark": "node --experimental-specifier-resolution=node --loader ts-node/esm __benchmarks__/*.ts"
},
"homepage": "https://docs.moi.technology/docs/build/packages/js-polo",
"repository": {
"type": "git",
"url": "git://github.com/sarvalabs/js-polo.git"
},
"bugs": {
"url": "https://github.com/sarvalabs/js-polo/issues"
},
"keywords": [
"polo",
"binary",
"serializer",
"deserializer"
],
"author": "Sarva Labs Inc. & MOI Protocol Developers",
"license": "Apache-2.0 OR MIT",
"dependencies": {
"bn.js": "^5.2.1",
"buffer": "^6.0.3"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"benchmark": "^2.1.4",
"chance": "^1.1.9",
"eslint": "^8.30.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}