-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
{
"name": "@likecoin/likecoin-js",
"version": "0.0.2",
"description": "",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"scripts": {
"build": "rm -rf dist && npm run build:commonjs && npm run build:es6 && npm run build:frontend",
"build:commonjs": "tsc",
"build:es6": "tsc --project tsconfig.es6.json",
"build:frontend": "webpack",
"lint": "eslint src --ext .ts",
"generate": "npm run build",
"prepublish": "npm run build",
"test": "jest --coverage"
},
"files": [
"dist/",
"!*.spec.*",
"!**/tests/*"
],
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/likecoin/likecoin-js.git"
},
"license": "GPL-3.0-or-later",
"peerDependencies": {
"@cosmjs/stargate": "^0.26.0",
"cosmjs-types": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@cosmjs/stargate": "^0.26.0",
"@types/jest": "^27.0.1",
"@types/qrcode": "^1.4.1",
"@types/uuid": "^8.3.1",
"@types/uuid-parse": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-loader": "^8.2.3",
"buffer": "^6.0.3",
"cosmjs-types": "^0.2.0",
"crypto-browserify": "^3.12.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.1.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2",
"util": "^0.12.4",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@likecoin/iscn-js": "0.0.7",
"axios": "^0.24.0",
"base64url": "^3.0.1",
"bignumber.js": "^9.0.1",
"form-data": "^4.0.0",
"glob-promise": "^4.2.2",
"protobufjs": "~6.8.8",
"qrcode": "^1.4.4",
"uuid": "^8.3.2",
"uuid-parse": "^1.1.0"
}
}