This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathpackage.json
58 lines (58 loc) · 1.75 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
{
"name": "@origin/messaging-client",
"version": "0.1.0",
"description": "Origin Messaging Client",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test mocha -r esm -r @babel/register test/index.js -t 8000",
"lint": "eslint . && npm run prettier:check",
"prettier": "prettier --write *.js \"src/**/*.js\" \"test/**/*.js\"",
"prettier:check": "prettier -c *.js \"src/**/*.js\" \"test/**/*.js\""
},
"dependencies": {
"ajv": "^6.10.0",
"bottleneck": "^2.19.1",
"crypto-js": "^3.1.9-1",
"crypto-random-string": "^3.0.0",
"debug": "^4.1.1",
"eth-ecies": "^1.0.3",
"json-stable-stringify": "^1.0.1",
"secp256k1": "3.8.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-destructuring",
"@babel/plugin-transform-object-assign",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties"
]
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-export-default-from": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.5",
"@babel/plugin-transform-destructuring": "7.9.5",
"@babel/plugin-transform-object-assign": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/register": "7.9.0",
"@babel/runtime": "7.9.2",
"debug": "4.1.1",
"mocha": "7.0.1",
"eslint": "6.8.0",
"prettier": "1.19.1"
}
}