forked from nfl/react-helmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.47 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
{
"name": "react-helmet",
"description": "A document head manager for React",
"version": "4.0.0",
"main": "./lib/Helmet.js",
"author": "NFL <engineers@nfl.com>",
"contributors": [
"Chris Welch <chris.welch@nfl.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nfl/react-helmet"
},
"keywords": [
"react-helmet",
"nfl",
"react",
"document",
"head",
"title",
"meta",
"link",
"script",
"base"
],
"peerDependencies": {
"react": ">=15.0.0"
},
"dependencies": {
"deep-equal": "1.0.1",
"object-assign": "^4.0.1",
"react-side-effect": "^1.1.0"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.16.0",
"babel-eslint": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.16.0",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"chai": "3.5.0",
"cross-env": "3.0.0",
"eslint": "3.11.1",
"eslint-config-nfl": "11.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "3.0.1",
"eslint-plugin-mocha": "4.7.0",
"eslint-plugin-react": "6.7.1",
"estraverse": "4.2.0",
"estraverse-fb": "1.3.1",
"isparta-loader": "2.0.0",
"karma": "1.3.0",
"karma-chai": "0.1.0",
"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.2.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-phantomjs-shim": "1.4.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-tap-reporter": "0.0.6",
"karma-webpack": "1.8.0",
"mocha": "3.1.0",
"phantomjs-prebuilt": "2.1.12",
"react": "15.x",
"react-dom": "15.x",
"rimraf": "2.5.4",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"webpack": "1.13.2"
},
"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"
}
}