forked from nfl/react-helmet
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
91 lines (91 loc) · 2.64 KB
/
package.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"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": ">=8.2.*"
},
"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": "^8.2.1",
"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"
}
}