-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.91 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.91 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
76
77
78
79
80
81
82
83
84
{
"name": "@2waychain/2wayjs",
"version": "1.0.7",
"description": "API wrapper to access the AIBlock 2 Way Chain",
"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 --forceExit",
"test-service": "jest --no-cache --config jest.config.js ./tests/__tests__/wallet.service.test.ts",
"test-item": "jest --no-cache --config jest.config.js ./tests/__tests__/item.mgmt.test.ts",
"test-key": "jest --no-cache --config jest.config.js ./tests/__tests__/key.mgmt.test.ts",
"test-tx": "jest --no-cache --config jest.config.js ./tests/__tests__/tx.mgmt.test.ts",
"test-utils": "jest --no-cache --config jest.config.js ./tests/__tests__/utils.test.ts",
"test-valence": "jest --no-cache --config jest.config.js ./tests/__tests__/valence.test.ts",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"AIBlock",
"2 Way Chain",
"SDK",
"API Module",
"TypeScript"
],
"author": "Byron Houwens <byron.houwens@a-block.ch>, Robin Plojoux <robin.plojoux@a-block.ch>",
"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",
"joi": "^17.12.3",
"js-sha3": "^0.8.0",
"neverthrow": "^4.3.1",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AIBlockOfficial/2Way.js.git"
},
"bugs": {
"url": "https://github.com/AIBlockOfficial/2Way.js/issues"
},
"homepage": "https://github.com/AIBlockOfficial/2Way.js#readme"
}