forked from ethersphere/bee-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.19 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
109
110
111
112
113
114
115
116
{
"name": "@ethersphere/bee-js",
"version": "0.11.0",
"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",
"data": "data.browser"
},
"types": "dist/src/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 --emitDeclarationOnly --declaration",
"compile:browser": "webpack --progress --env target=web",
"mock-ci": "npm run lint:check && npm run check:types && npm run test",
"docs": "rimraf docs && typedoc",
"test": "npm run compile:browser && jest --verbose --selectProjects=node:unit node:integration dom:integration --config=jest.config.ts",
"test:integration:browser": "npm run compile:browser && jest --verbose --selectProjects=dom:integration --config=jest.config.ts",
"test:integration:node": "jest --verbose --selectProjects=node:integration --config=jest.config.ts",
"test:integration": "npm run compile:browser && jest --verbose --selectProjects=node:integration dom:integration --config=jest.config.ts ",
"test:unit": "jest --verbose --selectProjects=node:unit --config=jest.config.ts ",
"test:node": "jest --verbose --selectProjects=node:unit node:integration --config=jest.config.ts",
"test:browser": "npm run test:integration:browser",
"check:types": "tsc --project tsconfig.test.json",
"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\"",
"depcheck": "depcheck ."
},
"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.4"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@fluffy-spoon/substitute": "^1.202.0",
"@jest/test-sequencer": "^26.6.3",
"@jest/types": "^26.6.2",
"@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.22",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "^14.14.41",
"@types/puppeteer": "^5.4.3",
"@types/tar-stream": "^2.2.0",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/ws": "^7.4.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"bufferutil": "^4.0.3",
"debug": "^4.3.1",
"depcheck": "^1.4.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.1",
"glob": "^7.1.6",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-puppeteer": "^5.0.0",
"nock": "^13.0.11",
"prettier": "^2.2.1",
"puppeteer": "^8.0.0",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.1.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "^3.6.1",
"typescript": "^4.2.4",
"utf-8-validate": "^5.0.4",
"webpack": "^5.33.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.6.0"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"bee": "0.6.3-388256b-dirty"
}
}