-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "@open-rights-exchange/orejs",
"version": "2.7.3",
"description": "Orejs is a Javascript helper library to provide simple high-level access to the ore-protocol. Orejs uses eosJS as a wrapper to the EOS blockchain.",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist/* && tsc --project ./tsconfig.json --pretty",
"lint": "./node_modules/.bin/eslint test/** src/** --fix",
"prepublishOnly": "npm run build",
"test": "jest --runInBand --coverage --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rights-exchange/orejs.git"
},
"author": "Open Rights Exchange",
"bugs": {
"url": "https://github.com/open-rights-exchange/orejs/issues"
},
"homepage": "https://github.com/open-rights-exchange/orejs#readme",
"devDependencies": {
"eslint": "^6.7.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"typescript": "^3.7.2"
},
"dependencies": {
"dotenv": "^8.0.0",
"eosjs": "20.0.0",
"eosjs-ecc": "^4.0.7",
"eosjs-keygen": "^1.3.2",
"flatted": "^2.0.1",
"hash.js": "^1.1.7",
"node-fetch": "^2.6.0",
"sjcl": "^1.0.8",
"text-encoding": "^0.7.0"
}
}