-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "gatsby-plugin-newrelic",
"version": "2.6.0",
"description": "Gatsby plugin for implementing the New Relic Browser agent",
"main": "index.js",
"scripts": {
"prebuild": "cross-env node scripts/prepare.js",
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source"
],
"author": "New Relic OpenSource <[email protected]>",
"bugs": {
"url": "https://github.com/newrelic/gatsby-plugin-newrelic/issues"
},
"homepage": "https://opensource.newrelic.com/projects/newrelic/gatsby-plugin-newrelic",
"peerDependencies": {
"gatsby": "3.x - 5.x",
"react": "17 - 18",
"react-dom": "17 - 18"
},
"repository": {
"type": "git",
"url": "https://github.com/newrelic/gatsby-plugin-newrelic"
},
"license": "Apache-2",
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^9.5.0",
"babel-preset-gatsby-package": "^0.1.4",
"cross-env": "^5.2.1"
},
"engines": {
"node": ">=16.3.1"
},
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}