-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "@sputniknetwork/starname-cosmjs",
"version": "0.1.1",
"description": "Starname module for the CosmJs (https://github.com/cosmos/cosmjs) library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"dry-build": "tsc --noEmit",
"build": "tsc",
"format": "prettier --write --loglevel warn './src/**/*.{ts,json,md,css}'",
"lint": "eslint -c .eslintrc.js --max-warnings 0 'src/**/*.ts'",
"lint:fix": "eslint -c .eslintrc.js 'src/**/*.ts' --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SputnikNetwork/starname-cosmjs.git"
},
"keywords": [
"CosmJs",
"Starname",
"CosmosSDK"
],
"author": "Albert Andrejev",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SputnikNetwork/starname-cosmjs/issues"
},
"homepage": "https://github.com/SputnikNetwork/starname-cosmjs#readme",
"dependencies": {
"@cosmjs/launchpad": "^0.25.4",
"@cosmjs/math": "^0.25.4"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.23.4",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^6.0.1",
"eslint-plugin-testing-library": "^3.10.1",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"typescript": "^4.1.2"
}
}