-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.94 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
{
"version": "0.0.2-beta.0",
"description": "Backend API wrapper to call DeBio Backend endpoints.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"install:hooks": ".maintain/install-hooks.sh",
"build": "tsc",
"check": "npm run format && npm run lint && npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config ./test/e2e/jest-e2e.json",
"test:e2e": "jest --config ./test/e2e/jest-e2e.json --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debionetwork/api-wrapper.git"
},
"keywords": [
"api",
"sdk",
"debio-network",
"nodejs",
"kit"
],
"author": "Agustinus Theodorus <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/debionetwork/api-wrapper/issues"
},
"homepage": "https://github.com/debionetwork/api-wrapper#readme",
"dependencies": {
"axios": "^0.26.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@debionetwork/polkadot-provider": "0.0.10",
"@elastic/elasticsearch": "^7.14.0",
"@nestjs/typeorm": "^8.0.3",
"@polkadot/api": "^8.1.1",
"@polkadot/util-crypto": "^9.0.1",
"@types/jest": "^27.0.0",
"babel-jest": "^27.5.1",
"docker-compose": "^0.23.17",
"jest": "27.0.6",
"jest-when": "^3.5.1",
"pg": "^8.7.3",
"prettier": "^2.5.1",
"regenerator-runtime": "^0.13.9",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typeorm": "^0.2.45",
"typescript": "^4.5.5"
},
"name": "@debionetwork/api-wrapper",
"directories": {
"test": "test"
}
}