-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.4 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.4 KB
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
{
"name": "@open-rights-exchange/chain-js",
"version": "4.10.0",
"description": "Javascript helper library providing plug-in interfaces to multiple block chains.",
"license": "MIT",
"author": "Open Rights Exchange",
"main": "dist/cjs/src/index.js",
"_module": "dist/mjs/src/index.js",
"_types": "dist/mjs/src/index.d.ts",
"sideEffects": false,
"scripts": {
"webpack": "webpack --mode=production --node-env=production",
"webpack:dev": "webpack --mode=development",
"_build": "rm -rf dist/* && ./node_modules/.bin/tsc --build tsconfig.json",
"lint": "./node_modules/.bin/eslint src",
"lint-fix": "./node_modules/.bin/eslint src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"test": "jest --coverage --maxWorkers=1",
"localpublish": "zalc publish && zalc push",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rights-exchange/chain-js.git"
},
"bugs": {
"url": "https://github.com/open-rights-exchange/chain-js/issues"
},
"homepage": "https://github.com/open-rights-exchange/chain-js#readme",
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.4",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@aikon/sjcl": "^0.1.8",
"@types/ed2curve": "^0.2.2",
"@types/scrypt-async": "^1.3.1",
"bignumber.js": "^9.0.0",
"bn.js": "^5.1.2",
"ed2curve": "^0.3.0",
"ethers": "^5.1.4",
"flatted": "^2.0.1",
"jest-fetch-mock": "^2.1.2",
"js-sha256": "^0.9.0",
"scrypt-async": "^2.0.1",
"secp256k1": "^4.0.2",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1"
},
"files": [
"dist",
"src"
]
}