-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "@tendermint/types",
"description": "TypeScript definitions for Cosmos and Tendermint",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cosmos/types.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"version": "0.1.2",
"main": "index.d.ts",
"scripts": {
"dirs": "mkdir -p docs",
"docs": "rm -rf docs/* && typedoc",
"lint": "eslint --ext .ts,.js .",
"nuke": "rm -rf **/node_modules yarn.lock",
"prepublishOnly": "yarn dirs && yarn lint && tsc",
"reset": "yarn nuke && yarn",
"setup": "yarn dirs && yarn lint && tsc"
},
"dependencies": {
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.31.0",
"eslint": "6.8.0",
"ts-node": "8.10.1",
"typedoc": "0.17.6",
"typescript": "3.8.3"
},
"files": [
"types/**/*.d.ts",
"index.d.ts",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json",
"yarn.lock"
]
}