-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 898 Bytes
/
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
{
"name": "gatsby-plugin-umami",
"description": "Gatsby plugin to add Umami to a Gatsby site",
"version": "0.1.5",
"author": "Florian Kapfenberger <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phiilu/gatsby-plugin-umami"
},
"main": "index.js",
"files": [
"gatsby-ssr.js"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"umami"
],
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"prrelease": "cross-env NODE_ENV=production npm run build",
"release": "np --no-tests"
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^7.0.3",
"np": "^7.7.0"
}
}