-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "@wharfkit/signing-request",
"version": "3.1.0",
"description": "Signing Request (ESR / EEP-7) encoder and decoder for Antelope blockchains",
"homepage": "https://github.com/greymass/eosio-signing-request",
"license": "MIT",
"main": "lib/signing-request.js",
"module": "lib/signing-request.m.js",
"types": "lib/signing-request.d.ts",
"sideEffects": false,
"files": [
"src/*",
"lib/*"
],
"scripts": {
"prepare": "make"
},
"dependencies": {
"@wharfkit/antelope": "^1.0.7",
"tslib": "^2.0.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.1",
"@types/bn.js": "^5.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.1",
"node-fetch": "^3.0.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rollup": "^2.38.1",
"rollup-plugin-dts": "^4.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}