forked from ironoa/polkadot-k8s-payouts
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "polkadot-payouts",
"version": "1.3.0",
"description": "Automated transfers among accounts",
"repository": "[email protected]:w3f/accountant.git",
"author": "W3F Infrastructure Team <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"build": "tsc --build tsconfig.json",
"prepare": "yarn build",
"pretest": "yarn lint",
"test": "mocha --timeout 10000 --require ts-node/register --exit test/**/*.ts",
"e2e-test": "mocha --timeout 300000 --require ts-node/register --exit e2e-test/**/*.ts",
"start": "NODE_OPTIONS='--max-old-space-size=4096' node ./dist/index.js start"
},
"dependencies": {
"@matrix-org/olm": "https://gitlab.matrix.org/matrix-org/olm/-/package_files/2572/download",
"@polkadot/api": "^12.3.1",
"@w3f/config": "^0.1.1",
"@w3f/logger": "^0.4.3",
"async-wait-until": "^1.2.6",
"bn.js": "^5.1.3",
"commander": "^4.1.1",
"matrix-js-sdk": "^25",
"node-fetch": "^2.6.6",
"node-localstorage": "^2",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/sinon": "^7.5.2",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@w3f/test-utils": "^1.2.29",
"chai": "^4.3.6",
"eslint": "7.32.0",
"mocha": "^9.2.0",
"sinon": "^9.0.1",
"tmp": "^0.1.0",
"ts-node": "^10.8.0",
"tslint": "^6.1.0",
"typescript": "^4.7.2"
}
}