-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "@w3f/polkadot-api-client",
"version": "1.2.1",
"description": "Polkaddot API client",
"repository": "[email protected]:w3f/polkadot-api-client-ts.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 120000 --require ts-node/register --exit test/**/*.ts",
"start": "node ./dist/src/index.js start"
},
"dependencies": {
"@polkadot/api": "^4.7.2",
"@w3f/logger": "^0.4.2",
"async-wait-until": "^1.2.6",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.1",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"@w3f/test-utils": "^1.2.2",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^7.0.0",
"tmp": "^0.1.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.0",
"typescript": "^4.2.3"
}
}