mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-07 04:53:50 +01:00
73 lines
2.2 KiB
JSON
73 lines
2.2 KiB
JSON
{
|
|
"name": "react-helmet-async",
|
|
"version": "1.3.0",
|
|
"description": "Thread-safe Helmet for React 16+ and friends",
|
|
"main": "lib/index.js",
|
|
"umd:main": "lib/index.umd.js",
|
|
"module": "lib/index.module.js",
|
|
"source": "src/index.js",
|
|
"types": "index.d.ts",
|
|
"repository": "http://github.com/staylor/react-helmet-async",
|
|
"author": "Scott Taylor <scott.c.taylor@mac.com>",
|
|
"license": "Apache-2.0",
|
|
"files": [
|
|
"lib/",
|
|
"src/",
|
|
"index.d.ts"
|
|
],
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.12.5",
|
|
"invariant": "^2.2.4",
|
|
"prop-types": "^15.7.2",
|
|
"react-fast-compare": "^3.2.0",
|
|
"shallowequal": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.17.6",
|
|
"@babel/core": "7.17.9",
|
|
"@babel/eslint-parser": "7.17.0",
|
|
"@babel/eslint-plugin": "7.17.7",
|
|
"@commitlint/cli": "16.2.3",
|
|
"@commitlint/config-conventional": "16.2.1",
|
|
"babel-preset-kyt-react": "1.3.18",
|
|
"enzyme": "3.11.0",
|
|
"enzyme-adapter-react-16": "1.15.6",
|
|
"enzyme-to-json": "3.6.2",
|
|
"eslint": "7.32.0",
|
|
"eslint-config-airbnb": "18.2.1",
|
|
"eslint-config-kyt": "1.6.2",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-import": "2.24.1",
|
|
"eslint-plugin-jest": "26.1.4",
|
|
"eslint-plugin-jest-formatting": "3.0.0",
|
|
"eslint-plugin-json": "3.1.0",
|
|
"eslint-plugin-jsx-a11y": "6.4.1",
|
|
"eslint-plugin-prettier": "3.4.1",
|
|
"eslint-plugin-react": "7.24.0",
|
|
"eslint-plugin-react-hooks": "4.2.0",
|
|
"husky": "7.0.4",
|
|
"jest": "27.5.1",
|
|
"jsdom": "16.4.0",
|
|
"microbundle": "0.14.2",
|
|
"prettier": "2.6.2",
|
|
"raf": "3.4.1",
|
|
"react": "16.14.0",
|
|
"react-dom": "16.14.0",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.6.0 || ^17.0.0 || ^18.0.0",
|
|
"react-dom": "^16.6.0 || ^17.0.0 || ^18.0.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf lib",
|
|
"lint": "eslint . --report-unused-disable-directives",
|
|
"lint-fix": "eslint . --fix",
|
|
"test": "NODE_ENV=test BABEL_ENV=test jest",
|
|
"test-watch": "yarn test --watch",
|
|
"test-update": "yarn test -u",
|
|
"compile": "yarn run clean && KYT_ENV_TYPE=client NODE_ENV=production microbundle --generateTypes=false --jsx React.createElement",
|
|
"prepare": "yarn compile && husky install"
|
|
}
|
|
}
|