-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "@plugnet/plug-api-types",
"version": "0.0.0",
"description": "SDK type definitions for the Plug runtime",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"dependencies": {
"@polkadot/types": "1.8.1",
"@polkadot/util": "^2.3.1",
"f": "^1.4.0"
},
"devDependencies": {
"@polkadot/api": "1.8.1",
"@polkadot/util-crypto": "^2.3.1",
"@types/bn.js": "^4.11.6",
"@types/jest": "^25.1.2",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^5.14",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^25.1.0",
"lint-staged": "^9.4.2",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"ts-jest": "^25.2.0",
"typescript": "3.7.5"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/plugblockchain/plug-api-types.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/plugblockchain/plug-api-types/issues"
},
"homepage": "https://github.com/plugblockchain/plug-api-types#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged -r 'types/*'"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
}
}