UNPKG

2.94 kBJSONView Raw
1{
2 "name": "react-helmet",
3 "description": "A document head manager for React",
4 "version": "6.1.0",
5 "main": "./lib/Helmet.js",
6 "module": "./es/Helmet.js",
7 "author": "NFL <engineers@nfl.com>",
8 "contributors": [
9 "Chris Welch <chris.welch@nfl.com>",
10 "Robert dela Victoria <robert.delavictoria@nfl.com>"
11 ],
12 "license": "MIT",
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/nfl/react-helmet"
16 },
17 "keywords": [
18 "react-helmet",
19 "nfl",
20 "react",
21 "document",
22 "head",
23 "title",
24 "meta",
25 "link",
26 "script",
27 "base",
28 "noscript",
29 "style"
30 ],
31 "peerDependencies": {
32 "react": ">=16.3.0"
33 },
34 "dependencies": {
35 "object-assign": "^4.1.1",
36 "prop-types": "^15.7.2",
37 "react-fast-compare": "^3.1.1",
38 "react-side-effect": "^2.1.0"
39 },
40 "devDependencies": {
41 "babel-core": "^6.24.0",
42 "babel-eslint": "^9.0.0",
43 "babel-plugin-external-helpers": "^6.22.0",
44 "babel-plugin-istanbul": "^4.0.0",
45 "babel-plugin-transform-class-properties": "^6.23.0",
46 "babel-plugin-transform-object-rest-spread": "^6.23.0",
47 "babel-preset-env": "^1.2.2",
48 "babel-preset-react": "^6.23.0",
49 "chai": "^3.5.0",
50 "codecov": "^3.6.5",
51 "conventional-changelog-cli": "^1.3.1",
52 "cz-conventional-changelog": "^2.0.0",
53 "eslint": "^3.18.0",
54 "eslint-config-nfl": "^11.1.0",
55 "eslint-config-prettier": "^6.11.0",
56 "eslint-plugin-import": "^2.2.0",
57 "eslint-plugin-jsx-a11y": "^6.2.3",
58 "eslint-plugin-mocha": "^4.9.0",
59 "eslint-plugin-prettier": "^2.1.2",
60 "eslint-plugin-react": "^6.10.2",
61 "istanbul": "^0.4.5",
62 "karma": "^1.5.0",
63 "karma-chai": "^0.1.0",
64 "karma-chai-sinon": "^0.1.5",
65 "karma-chrome-launcher": "^3.1.0",
66 "karma-coverage": "^1.1.1",
67 "karma-firefox-launcher": "^1.0.1",
68 "karma-html-reporter": "^0.2.7",
69 "karma-mocha": "^2.0.1",
70 "karma-rollup-preprocessor": "^6.1.0",
71 "karma-sourcemap-loader": "^0.3.7",
72 "karma-spec-reporter": "^0.0.32",
73 "karma-tap-reporter": "^0.0.6",
74 "mocha": "^7.2.0",
75 "prettier": "^1.4.4",
76 "react": "16.13.1",
77 "react-dom": "16.13.1",
78 "rimraf": "^3.0.2",
79 "rollup": "^0.67.0",
80 "rollup-plugin-babel": "^3.0.7",
81 "rollup-plugin-commonjs": "^9.2.0",
82 "rollup-plugin-node-resolve": "^3.4.0",
83 "rollup-plugin-replace": "^2.1.0",
84 "sinon": "^2.1.0",
85 "sinon-chai": "^2.8.0"
86 },
87 "scripts": {
88 "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
89 "clean": "rimraf lib coverage es",
90 "lint": "eslint --ignore-path .gitignore --fix -- .",
91 "test": "karma start karma.config.js",
92 "posttest": "istanbul report lcov text",
93 "pretest": "npm run clean && npm run lint",
94 "commit": "git-cz",
95 "build": "rollup -c",
96 "prepublish": "npm run build"
97 },
98 "config": {
99 "commitizen": {
100 "path": "./node_modules/cz-conventional-changelog"
101 }
102 }
103}