forked from ethersphere/bee-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.48 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@ethersphere/bee-js",
"version": "0.5.1",
"description": "Javascript client for Bee",
"keywords": [
"bee",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p",
"browser",
"node"
],
"homepage": "https://github.com/ethersphere/bee-js",
"bugs": {
"url": "https://github.com/ethersphere/bee-js/issues/"
},
"license": "BSD-3-Clause",
"main": "dist/index.min.js",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/bee-js.git"
},
"browser": {
"./dist/index.min.js": "./dist/index.browser.min.js",
"stream": "readable-stream"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "rimraf dist && npm run compile:types && npm run compile:browser --env mode=production && npm run compile:node --env mode=production",
"compile:node": "webpack --progress --env target=node",
"compile:types": "tsc --project tsconfig.d.json",
"compile:browser": "webpack --progress --env target=web",
"docs": "rimraf docs && typedoc",
"test": "npm run test:node && npm run test:browser",
"test:browser": "npm run compile:browser && jest --config=jest.config.ts --selectProjects=dom",
"test:node": "jest --config=jest.config.ts --selectProjects=node",
"lint": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\""
},
"dependencies": {
"axios": "^0.21.1",
"elliptic": "^6.5.4",
"isomorphic-ws": "^4.0.1",
"js-sha3": "^0.8.0",
"tar-js": "^0.3.0",
"ws": "^7.4.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/content-disposition": "^0.5.3",
"@types/debug": "^4.1.5",
"@types/elliptic": "^6.4.12",
"@types/expect-puppeteer": "^4.4.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/karma": "^5.0.1",
"@types/node": "^14.14.6",
"@types/puppeteer": "^5.4.2",
"@types/readable-stream": "^2.3.9",
"@types/tar-stream": "^2.1.0",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/webpack": "^4.41.26",
"@types/webpack-bundle-analyzer": "^3.9.0",
"@types/ws": "^7.4.0",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"bufferutil": "^4.0.3",
"debug": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"prettier": "^2.1.2",
"puppeteer": "^5.5.0",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.0.3",
"ts-node": "^9.0.0",
"typedoc": "^0.20.27",
"typedoc-plugin-markdown": "^3.5.0",
"typescript": "^4.1.3",
"utf-8-validate": "^5.0.4",
"webpack": "^5.18.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.4.0",
"yargs-parser": "^20.2.4"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}