-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.94 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
80
81
82
83
84
85
86
87
{
"name": "@provenanceio/provenance",
"version": "0.0.1",
"description": "Provenance Blockchain API",
"author": "Ergels Gaxhaj <egaxhaj@users.noreply.github.com>",
"homepage": "https://github.com/provenance-io/npm-publish#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "main/index.js",
"module": "module/index.js",
"typings": "types/index.d.ts",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"types",
"src",
"main",
"module"
],
"scripts": {
"build:main": "cross-env BABEL_ENV=production babel src --out-dir main --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:module": "cross-env MODULE=true babel src --out-dir module --delete-dir-on-start --extensions \".tsx,.ts,.js\"",
"build:ts": "tsc --project ./tsconfig.json",
"build": "npm run build:module && npm run build:main",
"buidl": "npm run build && npm run build:ts",
"codegen": "cross-env NODE_ENV=development babel-node scripts/codegen.js",
".": "npm run build",
"dev": "cross-env NODE_ENV=development babel-node src/index --extensions \".tsx,.ts,.js\"",
"watch": "cross-env NODE_ENV=development babel-watch src/index --extensions \".tsx,.ts,.js\"",
"lint": "eslint src --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/provenance-io/provjs"
},
"keywords": [],
"bugs": {
"url": "https://github.com/provenance-io/provjs/issues"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-numeric-separator": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-runtime": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@osmonauts/telescope": "^0.89.0",
"@types/jest": "^29.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.5.0",
"babel-watch": "^7.0.0",
"cross-env": "^7.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"jest-in-case": "^1.0.2",
"long": "^5.2.0",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^5.0.2"
},
"dependencies": {
"@babel/runtime": "^7.19.4",
"@cosmjs/amino": "0.30.1",
"@cosmjs/proto-signing": "0.30.1",
"@cosmjs/stargate": "0.30.1",
"@cosmjs/tendermint-rpc": "^0.30.1",
"protobufjs": "^7.0.0"
}
}