-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
68 lines (68 loc) · 2.09 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
{
"name": "@pinata/ipfs-gateway-tools",
"version": "1.3.0",
"description": "Toolkit for working with IPFS Gateways and CIDs",
"scripts": {
"start": "webpack serve",
"version": "auto-changelog -p && git add CHANGELOG.md",
"changelog": "auto-changelog -u && git add CHANGELOG.md",
"lint:check": "prettier --check .",
"lint:fix": "prettier --write \"**/*.{js,jsx,json,md,html,css,less,scss}\"",
"test:coverage": "./node_modules/.bin/jest --coverage --env=node",
"test": "./node_modules/.bin/jest --env=node",
"prepare": "npm run build",
"trypublish": "npm publish || true",
"expose:cmd": "mv -v dist/* ./",
"build": "webpack --mode=production",
"prepublishOnly": "webpack --mode=production && npm run expose:cmd"
},
"repository": {
"type": "git",
"url": "https://github.com/PinataCloud/ipfs-gateway-tools"
},
"author": "Matt Ober <[email protected]> (https://github.com/obo20)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PinataCloud/ipfs-gateway-tools/issues"
},
"homepage": "https://github.com/PinataCloud/ipfs-gateway-tools",
"keywords": [
"ipfs",
"gateway",
"pinata"
],
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run lint:fix"
}
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"auto-changelog": "^2.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-preset-minify": "^0.5.0",
"clean-webpack-plugin": "*",
"css-loader": "^5.2.4",
"eslint": "^7.24.0",
"file-loader": "^6.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"prettier-webpack-plugin": "^1.2.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "4.0.0-beta.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"is-ipfs": "^5.0.0"
}
}