-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
121 lines (121 loc) · 4.56 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
117
118
119
120
121
{
"name": "@fairdatasociety/fdp-storage",
"version": "0.19.0",
"description": "Typescript implementation of FairOS-dfs",
"keywords": [
"fairdata",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p",
"browser",
"node"
],
"homepage": "https://github.com/fairDataSociety/fdp-storage",
"bugs": {
"url": "https://github.com/fairDataSociety/fdp-storage/issues/"
},
"license": "BSD-3-Clause",
"main": "dist/index.min.js",
"repository": {
"type": "git",
"url": "https://github.com/fairDataSociety/fdp-storage.git"
},
"browser": {
"./dist/index.min.js": "./dist/index.browser.min.js",
"data": "data.browser"
},
"files": [
"dist"
],
"types": "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 --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:unit:browser": "npm run compile:browser && jest --verbose --selectProjects=dom:unit:browser --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:migration": "jest --verbose --selectProjects=node:migration --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:fairos": "jest --verbose --selectProjects=node:fairos --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": {
"@ethersphere/bee-js": "^6.2.0",
"@fairdatasociety/fdp-contracts-js": "^3.11.0",
"crypto-js": "^4.2.0",
"elliptic": "^6.5.4",
"ethers": "^5.5.2",
"js-sha3": "^0.9.2",
"pako": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@fluffy-spoon/substitute": "^1.208.0",
"@jest/test-sequencer": "^29.3.0",
"@jest/types": "^29.3.1",
"@types/content-disposition": "^0.5.7",
"@types/crypto-js": "^4.1.3",
"@types/debug": "^4.1.10",
"@types/elliptic": "^6.4.16",
"@types/expect-puppeteer": "^5.0.5",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.6",
"@types/jest-environment-puppeteer": "^5.0.5",
"@types/node": "^20.8.9",
"@types/pako": "^2.0.3",
"@types/webpack-bundle-analyzer": "^4.6.2",
"@types/ws": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.3",
"bootstrap": "^5.3.2",
"debug": "^4.3.1",
"depcheck": "^1.4.7",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^7.1.7",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-puppeteer": "^9.0.1",
"nock": "^13.3.6",
"prettier": "^3.0.3",
"puppeteer": "^21.4.1",
"rimraf": "^5.0.5",
"terser-webpack-plugin": "^5.1.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.2",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=9.0.0"
}
}