This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
executable file
·112 lines (112 loc) · 3.71 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@pokt-network/pocket-js",
"version": "0.9.2-rc",
"engine": {
"node": ">=12.16.0 <=16.13.0"
},
"description": "Pocket-js core package with the main functionalities to interact with the Pocket Network.",
"license": "MIT",
"main": "index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"directories": {
"tests": "./tests"
},
"scripts": {
"generateDocs": "typedoc",
"browserify": "browserify browserify.js -p [ minifyify --no-map ] --standalone PocketJS > dist/web.js",
"test:unit": "nyc mocha --require ts-node/register \"tests/src/unit/**/*.ts\" --timeout 0 --exit",
"test:integration": "nyc mocha --require ts-node/register \"tests/src/integration/**/*.ts\" --timeout 0 --exit",
"build": "rm -rf dist && mkdir dist && cti create ./src && npm run lint && tsc && npm run generateDocs",
"prepare": "npm run build && npm run browserify",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"update": "rm -rf dist && rm -rf node_modules && rm -rf package-lock.json && npm install"
},
"repository": "https://github.com/pokt-network/pocket-js/tree/master/packages/core",
"homepage": "https://github.com/pokt-network/pocket-js",
"bugs": {
"url": "https://github.com/pokt-network/pocket-js/issues"
},
"keywords": [
"Pocket",
"Network",
"SDK",
"Core",
"JavaScript",
"Blockchain",
"Tool"
],
"author": "Pocket Network",
"authors": [
{
"name": "Pabel Nunez Landestoy",
"email": "[email protected]",
"homepage": "https://github.com/pabelnl"
},
{
"name": "Luis C. de León",
"email": "[email protected]",
"homepage": "https://github.com/luyzdeleon"
},
{
"name": "Wilson Garcia",
"email": "[email protected]",
"homepage": "https://github.com/wgarcia4190"
},
{
"name": "Alex Firmani",
"email": "[email protected]",
"homepage": "https://github.com/nymd"
}
],
"dependencies": {
"@pokt-network/aat-js": "0.1.3-rc",
"@pokt-network/amino-js": "0.7.5-alpha.1",
"@tendermint/belt": "^0.2.1",
"@types/aes-js": "^3.1.0",
"@types/libsodium-wrappers": "^0.7.7",
"@types/scrypt-js": "^2.0.4",
"@types/varint": "^6.0.0",
"aes-js": "^3.1.2",
"axios": "^0.21.1",
"bigint-conversion": "^2.1.12",
"browserify": "^16.5.1",
"buffer": "^5.6.0",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"libsodium-wrappers": "^0.7.6",
"minifyify": "^7.3.5",
"node-localstorage": "^2.1.5",
"pbkdf2": "^3.0.17",
"scrypt-js": "^3.0.1",
"ts-proto": "^1.76.0",
"tsify": "^4.0.1",
"varint": "^6.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.7",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.17",
"@types/pbkdf2": "^3.0.0",
"@types/seedrandom": "^2.4.28",
"chai": "^4.2.0",
"create-ts-index": "^1.12.0",
"dotenv": "^8.2.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.2",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.20.36",
"typescript": "^3.7.2"
}
}