forked from API-market/ore-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.29 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
{
"name": "@open-rights-exchange/orejs",
"version": "2.1.2",
"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": "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.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.2",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"typescript": "^3.5.2"
},
"dependencies": {
"dotenv": "^8.0.0",
"eosjs": "20.0.0",
"eosjs-ecc": "^4.0.4",
"eosjs-keygen": "^1.3.2",
"hash.js": "^1.1.7",
"node-fetch": "^2.6.0",
"sjcl": "^1.0.8",
"text-encoding": "^0.7.0"
}
}