UNPKG

preact-helmet

Version:
92 lines (91 loc) 2.7 kB
{ "name": "preact-helmet", "description": "A document head manager for Preact", "version": "4.0.0-alpha-3", "main": "./lib/Helmet.js", "author": "NFL <engineers@nfl.com>", "contributors": [ "Chris Welch <chris.welch@nfl.com>", "Stijn de Witt <StijnDeWitt@hotmail.com> (https://stijndewitt.com)" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/download/preact-helmet" }, "keywords": [ "react-helmet", "preact-helmet", "nfl", "react", "preact", "document", "head", "title", "meta", "link", "script", "base" ], "dependencies": { "deep-equal": "^1.0.1", "object-assign": "^4.0.1", "preact-side-effect": "^1.3.0" }, "peerDependencies": { "preact": ">=7.1.0" }, "devDependencies": { "babel-cli": "6.22.2", "babel-core": "6.22.1", "babel-eslint": "7.1.1", "babel-plugin-add-module-exports": "0.2.1", "babel-plugin-transform-es2015-modules-commonjs": "6.22.0", "babel-plugin-transform-react-jsx": "^6.22.0", "babel-preset-es2015-minimal": "^2.1.0", "babel-preset-latest": "6.22.0", "babel-preset-stage-0": "6.22.0", "chai": "3.5.0", "cross-env": "3.1.4", "eslint": "3.15.0", "eslint-config-nfl": "11.1.0", "eslint-plugin-import": "2.2.0", "eslint-plugin-jsx-a11y": "4.0.0", "eslint-plugin-mocha": "4.8.0", "eslint-plugin-react": "6.9.0", "estraverse": "4.2.0", "estraverse-fb": "1.3.1", "isparta-loader": "2.0.0", "karma": "1.4.1", "karma-chai-sinon": "0.1.5", "karma-chrome-launcher": "2.0.0", "karma-coverage": "1.1.1", "karma-html-reporter": "0.2.7", "karma-mocha": "1.3.0", "karma-phantomjs-launcher": "1.0.2", "karma-phantomjs-shim": "1.4.0", "karma-sourcemap-loader": "0.3.7", "karma-spec-reporter": "0.0.27", "karma-tap-reporter": "0.0.6", "karma-webpack": "2.0.2", "mocha": "3.2.0", "phantomjs-prebuilt": "2.1.14", "preact": "7.1.0", "preact-render-to-string": "3.5.0", "rimraf": "2.5.4", "sinon": "1.17.7", "sinon-chai": "2.8.0", "webpack": "2.2.1" }, "scripts": { "clean": "rimraf lib build es", "lint": "eslint --ignore-path .gitignore -- .", "test": "karma start karma.config.js", "posttest": "cat ./build/reports/coverage/text.txt", "pretest": "npm run clean && npm run lint && npm run compile", "compile": "npm run compile:commonjs && npm run compile:es", "compile:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib", "compile:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore test.js", "prepublish": "npm run compile" } }