-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "coinrayjs",
"version": "1.9.4",
"description": "Javascript Library for Coinray.io",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"author": "development@coinray.io",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --detectOpenHandles",
"test:watch": "jest --detectOpenHandles --watch",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "tsc",
"build:watch": "tsc --watch",
"prepare": "npm run build",
"start": "webpack-dev-server --hot --host 0.0.0.0 --port 8082 --config=./webpack.config.js --mode development"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"@ungap/event-target": "^0.1.0",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"jose": "^1.28.0",
"lodash": "^4.17.11",
"moment": "^2.29.3",
"node-forge": "^0.9.1",
"phoenix": "^1.3.4",
"rfc4648": "^1.4.0",
"uuid": "^3.4.0",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.135",
"@types/node": "^12.0.10",
"@types/node-forge": "^0.8.6",
"@types/phoenix": "^1.4.3",
"@types/uuid": "^3.4.6",
"@types/ws": "^6.0.4",
"babel-cli": "^6.26.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"jest": "^24.8.0",
"jose": "^1.28.0",
"jose-jwe-jws": "^0.2.2",
"node-jose": "^1.1.4",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2",
"typescript-eslint-parser": "^22.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.2",
"ws": "^6.0.0"
},
"keywords": [
"coinray",
"coinrayio"
],
"bugs": {
"url": "https://github.com/coinrayio/coinrayjs/issues"
},
"homepage": "https://github.com/coinrayio/coinrayjs#readme"
}