-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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": "gatsby-plugin-ipfs",
"description": "Adds support for deploying Gatsby to IPFS by ensuring that assets are relative",
"version": "2.0.2",
"keywords": [
"gatsby",
"gatsby-plugin",
"ipfs",
"ipns",
"relative"
],
"author": "André Cruz <[email protected]>",
"homepage": "https://github.com/moxystudio/gatsby-pljugin-ipfs",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/gatsby-plugin-ipfs.git"
},
"license": "MIT",
"files": [
"index.js",
"gatsby-node.js",
"runtime"
],
"scripts": {
"build": "babel src --out-dir .",
"postbuild": "uglifyjs runtime/head-script.js --compress --mangle -o runtime/head-script.js",
"lint": "eslint . --ignore-path .gitignore",
"prerelease": "npm run lint && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix --ignore-pattern test/fixtures",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"globby": "^8.0.1",
"is-text-path": "^1.0.1",
"p-map": "^2.0.0"
},
"peerDependencies": {
"gatsby": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"babel-preset-gatsby-package": "^0.1.2",
"eslint": "^5.3.0",
"eslint-config-moxy": "^6.0.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.0",
"standard-version": "^5.0.0",
"uglify-js": "^3.4.9"
}
}