-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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": "react-event-tracker",
"version": "5.2.0",
"description": "Easily track events in your React application",
"main": "dist/index.js",
"scripts": {
"prettier": "prettier --write \"**/*.{js,json}\"",
"lint": "eslint --max-warnings 0 \"**/*.js\"",
"test": "echo \"Coming soon!\"",
"transpile": "rimraf dist && babel src -d dist --ignore \"src/**/*.test.js\"",
"prepublish": "npm run transpile",
"postinstall": "is-ci || husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/preset-react": "7.14.5",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-plugin-react": "7.24.0",
"husky": "5.0.6",
"is-ci": "2.0.0",
"pinst": "2.1.6",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"react": "17.0.2",
"rimraf": "3.0.2"
},
"keywords": [
"react",
"event",
"tracker",
"analytics"
],
"homepage": "https://github.com/LatitudeFinancialOSS/react-event-tracker",
"repository": {
"type": "git",
"url": "https://github.com/LatitudeFinancialOSS/react-event-tracker.git"
},
"bugs": {
"url": "https://github.com/LatitudeFinancialOSS/react-event-tracker/issues"
},
"files": [
"dist"
],
"license": "MIT"
}