forked from joticajulian/koilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.9 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
{
"name": "koilib",
"version": "2.7.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"
],
"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 docs && 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.0.0",
"@noble/secp256k1": "^1.5.0",
"cross-fetch": "^3.1.4",
"multibase": "^4.0.6",
"protobufjs": "^6.11.2"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.9",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"audit-ci": "^5.1.2",
"copyfiles": "^2.4.1",
"dotenv": "^14.2.0",
"eslint": "^8.7.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fastify": "^3.26.0",
"fastify-cors": "^6.0.2",
"fastify-static": "^4.5.0",
"jest": "^27.4.7",
"jest-puppeteer": "^6.0.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"typedoc": "^0.22.11",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
}
}