react-tracking
Version:
Declarative tracking for React apps.
111 lines (110 loc) • 2.95 kB
JSON
{
"name": "react-tracking",
"version": "5.6.0",
"description": "Declarative tracking for React apps.",
"author": "The New York Times",
"contributors": [
{
"name": "Nicole Baram",
"email": "nicole.baram@nytimes.com",
"url": "https://github.com/nicolehollyNYT"
},
{
"name": "Oleh Ziniak",
"email": "oleh.ziniak@nytimes.com",
"url": "https://github.com/oziniak"
},
{
"name": "Ivan Kravchenko",
"email": "ivan@kravchenko.rocks",
"url": "https://github.com/ivankravchenko"
},
{
"name": "Jeremy Gayed",
"email": "jeremy.gayed@nytimes.com",
"url": "https://github.com/tizmagik"
},
{
"name": "Lukasz Szmit",
"email": "lukasz.szmit@workday.com",
"url": "https://github.com/lszm"
}
],
"license": "Apache-2.0",
"main": "build/index.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NYTimes/react-tracking"
},
"keywords": [
"nyt",
"react",
"declarative",
"tracking",
"metrics",
"layer"
],
"homepage": "https://github.com/NYTimes/react-tracking",
"dependencies": {
"deepmerge": "^2.2.1",
"hoist-non-react-statics": "^3.0.1"
},
"peerDependencies": {
"core-js": "2.x",
"react": "^15.0.0 || ^16.0.0",
"prop-types": "^15.x"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.0.0-rc.15",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"prop-types": "^15.6.2",
"raf-polyfill": "^1.0.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --config ./.prettierrc.json --config-precedence prefer-file",
"git add"
]
},
"scripts": {
"prepare": "npm run lint && npm run test && npm run build",
"build": "babel --out-dir build src --ignore src/__tests__",
"build:watch": "npm run build -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src"
}
}