-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
54
55
56
57
58
59
{
"name": "@mangoart/gatsby-plugin-dynatrace",
"description": "Gatsby Plugin to inject the Dynatrace JavaScript Agent into the generated pages and uses the JS ADK to track page changes",
"version": "1.1.0",
"author": "Markus Oehler <m.oehler@digital-city.solutions>",
"main": "index.js",
"bugs": {
"url": "https://github.com/MangoArt/gatsby-plugin-dynatrace/issues"
},
"homepage": "https://github.com/MangoArt/gatsby-plugin-dynatrace",
"repository": "github:MangoArt/gatsby-plugin-dynatrace.git",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"release": "release-it"
},
"release-it": {
"github": {
"release": true
}
},
"keywords": [
"gatsby",
"gatsby-plugin",
"dynatrace",
"real user monitoring"
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"html-react-parser": "^0.10.0",
"node-fetch": "^2.3.0"
},
"peerDependencies": {
"gatsby": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "7.8.3",
"@babel/core": "7.8.3",
"babel-preset-gatsby-package": "0.2.15",
"cross-env": "6.0.3",
"husky": "4.0.10",
"lint-staged": "10.0.0",
"prettier": "1.19.1",
"release-it": "12.4.3"
}
}