-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.53 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
71
72
73
74
75
76
77
{
"name": "@keg-hub/rga4",
"version": "0.0.4",
"description": "React Components and hooks for integrating Google Analytics 4 into an application",
"repository": "https://github.com/lancetipton/rga4.git",
"author": "lancetipton <lancetipton04@gmail.com>",
"license": "MIT",
"private": false,
"main": "build/rga4.cjs.js",
"module": "build/rga4.esm.js",
"keywords": [
"react",
"google",
"analytics",
"ga",
"ga4"
],
"files": [
"build/*",
"index.d.ts"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"scripts": {
"build": "yarn clean:build; NODE_ENV=production rollup -c ./configs/rollup.config.js",
"clean:build": "rimraf build",
"clean:full": "yarn clean:nm; clean:build",
"clean:install": "yarn clean:full; yarn install --force",
"clean:nm": "rimraf yarn.lock; rimraf package.lock; rimraf node_modules",
"dev": "nodemon --watch ./configs --exec 'NODE_ENV=production rollup -c ./configs/rollup.config.js -w'",
"docs:build": "rimraf ./docs && ./node_modules/.bin/jsdoc -c ./configs/jsdoc.json -R README.md",
"docs:deploy": "yarn build && yarn docs:build && gh-pages -d docs",
"docs:serve": "cd ./docs && serve .",
"docs": "yarn docs:build && yarn docs:serve",
"format": "yarn pretty",
"pretty": "./node_modules/.bin/prettier --config ./configs/prettier.config.js --write '**/*.{js,jsx}'",
"start": "yarn dev",
"test": "NODE_ENV=test jest --no-cache --config=./configs/jest.config.js"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-object-assign": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"@babel/runtime": "7.12.1",
"@rollup/plugin-babel": "5.2.0",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"@rollup/plugin-sucrase": "3.1.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"docdash": "1.2.0",
"gh-pages": "2.2.0",
"jest": "24.9.0",
"jsdoc": "3.6.6",
"jsvalidator": "1.2.0",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"rimraf": "3.0.2",
"rollup": "2.23.1",
"rollup-jest": "0.0.2",
"rollup-plugin-cleanup": "3.1.1",
"rollup-plugin-terser": "6.1.0",
"serve": "11.3.2"
},
"peerDependencies": {
"react": "16.13.1"
},
"dependencies": {},
"typings": "./index.d.ts"
}