-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "gatsby-plugin-preconnect",
"version": "1.4.0",
"description": "Gatsby plugin to add the crossorigin attribute to every <link rel=\"preload\"> tag",
"main": "index.js",
"keywords": [
"gatsby",
"gatsby-plugin",
"lighthouse",
"preconnect",
"prefetch"
],
"author": "NoriSte <[email protected]>",
"license": "MIT",
"repository": "https://github.com/NoriSte/gatsby-plugin-preconnect",
"devDependencies": {
"@babel/cli": "7.12.13",
"@babel/core": "7.12.13",
"cross-env": "7.0.3",
"babel-preset-gatsby-package": "0.12.0",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "17.3.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"commit": "npx git-cz",
"test": "npm run build && npm run test:base-configuration-test",
"test:base-configuration-test": "cd test-projects/base-configuration-test && npm run test && cd ../..",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"semantic-release": "semantic-release"
},
"dependencies": {
"@babel/runtime": "^7.4.3"
},
"peerDependencies": {
"gatsby": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
}
}