-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.96 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@2waychain/xgp",
"version": "0.0.1",
"description": "The eXtensible Gateway Protocol",
"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",
"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",
"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": [
"AIBlock",
"XGP",
"Data",
"Blockchain",
"Encryption",
"TypeScript"
],
"author": "Byron Houwens <[email protected]>",
"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.15.1",
"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": {
"@2waychain/2wayjs": "^1.0.5",
"@pinata/sdk": "^2.1.0",
"@tatumio/tatum": "^4.2.31",
"aws-sdk": "^2.1638.0",
"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",
"sha256-uint8array": "^0.10.7",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AIBlockOfficial/xgp.js.git"
},
"bugs": {
"url": "https://github.com/AIBlockOfficial/xgp.js/issues"
},
"homepage": "https://github.com/AIBlockOfficial/xgp.js#readme"
}