forked from nfl/react-helmet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.2 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-safety-helmet",
"description": "A fork of react-helmet that support for renderToNodeStream and thread safe with the power of redux",
"version": "6.3.0",
"main": "./lib/Helmet.js",
"author": "Bin Hou <[email protected]> (https://github.com/kouhin)",
"contributors": [
"NFL <[email protected]>",
"Chris Welch <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openameba/react-safety-helmet"
},
"keywords": [
"react-helmet",
"nfl",
"react",
"document",
"head",
"title",
"meta",
"link",
"script",
"base",
"noscript",
"style",
"thread-safe",
"stream",
"renderToNodeStream",
"renderToStaticNodeStream"
],
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"exenv": "^1.2.2",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2",
"react-fast-compare": "^2.0.2",
"react-reffect": "^2.3.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"chai": "^4.1.2",
"codecov": "^3.1.0",
"conventional-changelog-cli": "^2.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.5.0",
"eslint-config-nfl": "^12.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"istanbul": "^0.4.5",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-html-reporter": "^0.2.7",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-tap-reporter": "^0.0.6",
"karma-webpack": "^4.0.0-rc.2",
"mocha": "^5.2.0",
"prettier": "^1.14.2",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"rimraf": "^2.6.2",
"sinon": "^6.2.0",
"sinon-chai": "^3.2.0",
"webpack": "^4.18.0"
},
"scripts": {
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "rimraf lib coverage es",
"lint": "eslint --ignore-path .gitignore --fix -- .",
"test": "cross-env BABEL_ENV=test karma start karma.config.js",
"posttest": "istanbul report lcov text",
"pretest": "npm run clean && npm run lint",
"commit": "git-cz",
"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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}