-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.29 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
{
"name": "@ethoprotocol/sdk",
"version": "0.0.1",
"description": "Official SDK for the Etho Protocol Network",
"main": "lib/ethofs-sdk.js",
"scripts": {
"build": "webpack --env dev && webpack --env build && npm run test",
"coverage": "jest --coverage",
"dev": "webpack --progress --colors --watch --env dev",
"html": "open coverage/index.html",
"lint": "eslint src --quiet ",
"lint:fix": "eslint src --fix",
"test": "jest",
"repl": "node -i -e \"$(< ./lib/ethofs-sdk.js)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ether1Project/ethofs-sdk.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs"
],
"author": "ethoprotocol",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ether1Project/ethofs-sdk/issues"
},
"homepage": "https://github.com/Ether1Project/ethofs-sdk",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"acorn": "^7.4.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.2.4",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-polyfill": "^6.26.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.4",
"jest": "^25.5.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2",
"yargs": "^10.0.3"
},
"dependencies": {
"async_hooks": "^1.0.0",
"axios": "^0.21.4",
"base-path-converter": "^1.0.2",
"bl": "^5.0.0",
"bs58": "^4.0.1",
"buffer": "^6.0.3",
"buffer-to-arraybuffer": "0.0.6",
"debug": "^4.3.4",
"electron": "^11.5.0",
"form-data": "^2.3.3",
"fs": "0.0.1-security",
"ipfs-http-client": "^48.2.2",
"is-ipfs": "^0.6.0",
"recursive-fs": "^1.1.2",
"swarm-js": "^0.1.40",
"web3": "^1.7.1"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"html"
],
"roots": [
"<rootDir>"
],
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"web.js",
"json",
"mjs",
"js",
"node"
]
},
"directories": {
"lib": "lib",
"test": "test"
}
}