forked from PinataCloud/Pinata-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 1.72 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
{
"name": "@pinata/sdk",
"version": "1.1.10",
"description": "Official SDK for the Pinata IPFS platform",
"main": "lib/pinata-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/pinata-sdk.js)\""
},
"repository": {
"type": "git",
"url": "https://github.com/PinataCloud/Pinata-SDK.git"
},
"keywords": [
"webpack",
"es6",
"starter",
"library",
"universal",
"umd",
"commonjs"
],
"author": "Matt Ober",
"license": "MIT",
"bugs": {
"url": "https://github.com/PinataCloud/Pinata-SDK/issues"
},
"homepage": "https://github.com/PinataCloud/Pinata-SDK",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"acorn": "^7.1.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-polyfill": "^6.26.0",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"jest": "^25.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"yargs": "^10.0.3"
},
"dependencies": {
"axios": "^0.18.1",
"base-path-converter": "^1.0.2",
"form-data": "^2.3.3",
"is-ipfs": "^0.6.0",
"recursive-fs": "^1.1.2"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"html"
],
"moduleFileExtensions": [
"js"
]
}
}