-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.35 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": "@blockchyp/blockchyp-ts",
"version": "2.20.1",
"description": "BlockChyp Typescript Client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"browser": "_bundles/blockchyp.min.js",
"scripts": {
"lint": "eslint . --ext .ts",
"clean": "tsc --build --clean && rm -rf lib && rm -rf _bundles",
"test": "npm run build && jasmine lib/spec/*.js --stop-on-failure=false",
"build": "npm run lint && tsc",
"prod": "npm run build && webpack",
"prepare": "npm run prod"
},
"files": [
"index.ts",
"src/",
"spec/",
".eslintrc.json",
"index.d.ts",
"lib/",
"_bundles/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blockchyp/blockchyp-ts.git"
},
"keywords": [
"payments",
"blockchain"
],
"author": "jeffreydpayne",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockchyp/blockchyp-ts/issues"
},
"homepage": "https://github.com/blockchyp/blockchyp-ts#readme",
"devDependencies": {
"@types/aes-js": "^3.1.4",
"@types/create-hmac": "^1.1.3",
"@types/elliptic": "^6.4.18",
"@types/is-windows": "^1.0.2",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.12.12",
"@types/randombytes": "^2.0.3",
"@types/sha.js": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"browserify": "^16.5.2",
"eslint": "^8.57.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"fs": "0.0.1-security",
"is-windows": "^1.0.2",
"jasmine": "^3.99.0",
"jasmine-promises": "^0.4.1",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"uglify-js": "^3.4.2",
"uuid": "^3.3.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"aes-js": "^3.1.1",
"axios": "^1.7.7",
"base32": "^0.0.7",
"bn.js": "^4.11.8",
"buffer": "^6.0.3",
"cached-path-relative": "^1.0.2",
"create-hmac": "^1.1.7",
"crypto-browserify": "^3.12.0",
"elliptic": "^6.5.5",
"moment": "^2.22.2",
"npm": "^10.8.3",
"randombytes": "^2.0.6",
"sha.js": "^2.4.11",
"stream-browserify": "^3.0.0",
"uuidv4": "^6.2.13"
}
}