This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.25 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
{
"name": "@a-block/a-blockjs",
"version": "2.1.0",
"description": "API wrapper to access the ABlock network",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/index.es.js",
"browser": "lib/index.js",
"source": "src/index.ts",
"scripts": {
"build": "rimraf lib && microbundle",
"lint": "npm run es:lint && npm run check:types && npm run format",
"lint:fix": "npm run es:lint:fix && npm run format:fix",
"generate:docs": "typedoc src --tsconfig tsconfig.json --out docs",
"format:fix": "prettier --write \"src/**/*.(js|ts)\"",
"format": "prettier --check \"src/**/*.(js|ts)\"",
"check:types": "tsc --noemit",
"es:lint": "eslint src --ext .js,.ts",
"es:lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --no-cache --config jest.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"ABlock",
"API Module",
"TypeScript"
],
"author": "Byron Houwens, Anton Troskie",
"license": "MIT",
"devDependencies": {
"@types/bitcore-lib": "^0.15.3",
"@types/jest": "27.4.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"eslint": "7.5.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "26.1.1",
"eslint-plugin-neverthrow": "^1.1.4",
"eslint-plugin-typesafe": "^0.5.2",
"jest": "27.5.1",
"microbundle": "^0.14.2",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "27.1.3",
"tslib": "^2.3.1",
"typedoc": "^0.23.10",
"typescript": "^4.5.0"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "1.6.2",
"bitcore-lib": "^8.25.25",
"bitcore-mnemonic": "^8.25.25",
"byte-base64": "^1.1.0",
"js-sha3": "^0.8.0",
"neverthrow": "^4.3.1",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
}
}