forked from joticajulian/koilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3 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
{
"name": "koilib",
"version": "8.0.0",
"description": "JS Koinos Library",
"author": "Julian Gonzalez",
"repository": {
"url": "https://github.com/joticajulian/koilib.git"
},
"homepage": "https://github.com/joticajulian/koilib.git",
"bugs": {
"url": "https://github.com/joticajulian/koilib/issues"
},
"files": [
"lib",
"dist",
"src"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"browser": "./lib/browser/index.js",
"scripts": {
"audit": "audit-ci",
"build": "yarn build:node && yarn build:browser",
"build:node": "node helperNodeBrowser.js --node && rimraf lib && tsc -p tsconfig.node.json",
"build:browser": "rimraf lib/browser && node helperNodeBrowser.js --browser && tsc -p tsconfig.browser.json && node helperNodeBrowser.js --node",
"bundle": "yarn bundle:no-min && yarn bundle:min",
"bundle:min": "node helperNodeBrowser.js --browser && webpack --mode=production --config webpack.prod.config.js && node helperNodeBrowser.js --node",
"bundle:no-min": "node helperNodeBrowser.js --browser && webpack --mode=production --config webpack.dev.config.js && node helperNodeBrowser.js --browser",
"docs": "typedoc src/index.ts --includeVersion",
"clean": "rimraf dist coverage",
"fix:provider": "node helperNodeBrowser.js --node",
"lint": "yarn lint:prettier && yarn lint:eslint && yarn lint:tsc",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --ext .js,.ts",
"lint:tsc": "tsc --noEmit --incremental false",
"prerelease": "yarn bundle && yarn build",
"proto": "node generateJsonKoinosProto.js",
"test": "jest",
"test:unit": "jest wallet.spec.ts",
"test:e2e": "jest wallet.e2e-spec.ts",
"test:chain": "jest chain.e2e-spec.ts"
},
"exports": {
"./package.json": "./package.json",
".": "./lib/index.js"
},
"dependencies": {
"@noble/hashes": "^1.3.1",
"@noble/secp256k1": "^1.7.1",
"@roamin/koinos-pb-to-proto": "^0.0.3",
"cross-fetch": "^3.1.5",
"multibase": "^4.0.6",
"protobufjs": "^7.2.4"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"audit-ci": "^6.3.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.16",
"fastify": "^3.26.0",
"fastify-cors": "^6.0.2",
"fastify-static": "^4.5.0",
"jest": "^28.1.3",
"jest-puppeteer": "^6.1.1",
"prettier": "^2.7.1",
"protobufjs-cli": "^1.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.7.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}