This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
forked from cosmos/amino-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 3.17 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@tendermint/amino-js",
"description": "go-amino + GopherJS + TypeScript",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/cosmos/amino-js.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"version": "0.6.2",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf dist/* && webpack --config build --progress --colors --display-error-details",
"build:dev": "NODE_ENV=development yarn build",
"build:prod": "NODE_ENV=production yarn build",
"dirs": "mkdir -p dist docs types",
"dist:dev": "yarn go && yarn build:dev",
"dist:prod": "yarn go:min && yarn build:prod && yarn gzip",
"docs": "rm -rf docs/* && typedoc",
"go": "cd go/js && gopherjs build -v -o ../../lib/Amino.js .",
"go:min": "yarn go -m",
"go:watch": "yarn go -w",
"gzip": "gzip -kf dist/*.{js,map}",
"lint": "eslint --ext .ts,.js .",
"nuke": "rm -rf **/node_modules yarn.lock",
"prepublishOnly": "yarn dirs && yarn lint && yarn tsc && yarn dist:prod && yarn test",
"reset": "yarn nuke && yarn",
"setup": "yarn dirs && yarn lint && yarn tsc && yarn dist:dev",
"test": "jest --config test/jest.config.json",
"tsc": "rm -rf types/* && tsc && cp -R lib/*.d.ts types/lib/",
"watch": "yarn build:dev --watch"
},
"dependencies": {
"@tendermint/belt": "0.2.1",
"@tendermint/types": "0.1.1"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-typescript": "7.7.2",
"@types/jest": "24.0.22",
"@types/node": "12.12.7",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"babel-loader": "8.0.6",
"eslint": "6.6.0",
"eslint-loader": "3.0.2",
"eslint-plugin-node": "10.0.0",
"jest": "24.9.0",
"ts-jest": "24.1.0",
"ts-loader": "6.2.1",
"ts-node": "8.4.1",
"typedoc": "0.15.0",
"typescript": "3.7.2",
"webpack": "4.41.2",
"webpack-cli": "3.3.10",
"webpack-merge": "4.2.2"
},
"files": [
"dist",
"lib/**/*.{ts,js,map}",
"src/**/*.{ts,js}",
"types/**/*.ts",
"index.ts",
"index.d.ts",
"index.js",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json",
"yarn.lock"
]
}