-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.91 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": "@cennznet/api-types",
"version": "1.0.0",
"description": "Type definitions for CENNZnet node",
"author": "Centrality Developers <[email protected]>",
"keywords": [
"CENNZNet"
],
"homepage": "https://github.com/cennznet/api-types",
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cennznet/api-types.git"
},
"scripts": {
"test": "jest",
"build": "yarn generate:defs && yarn generate:meta",
"generate:defs": "ts-node --skip-project node_modules/.bin/polkadot-types-from-defs --package @cennznet/api-types/interfaces --input ./src/interfaces",
"generate:meta": "ts-node --skip-project node_modules/.bin/polkadot-types-from-chain --package @cennznet/api-types/interfaces --endpoint ./cennznet.json --output ./src/interfaces"
},
"dependencies": {
"@polkadot/keyring": "^3.5.1",
"@polkadot/types": "^2.3.1",
"@polkadot/util": "^3.5.1",
"memoizee": "^0.4.14",
"bignumber.js": "^9.0.1"
},
"devDependencies": {
"@polkadot/api": "^2.3.1",
"@polkadot/typegen": "^2.3.1",
"@polkadot/rpc-provider": "^2.3.1",
"@polkadot/types": "^2.3.1",
"@polkadot/util": "^3.5.1",
"@types/bn.js": "^4.11.6",
"@types/jest": "^25.1.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}