forked from nfl/react-helmet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.09 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
{
"name": "react-helmet",
"description": "A document head manager for React",
"version": "2.3.1",
"main": "./lib/index.js",
"author": "NFL <[email protected]>",
"contributors": [
"Chris Welch <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nfl/react-helmet"
},
"keywords": [
"react-helmet",
"nfl",
"react",
"document",
"head",
"title",
"meta",
"link",
"script",
"base"
],
"dependencies": {
"core-js": "2.0.3",
"deep-equal": "1.0.1",
"invariant": "2.2.0",
"react-side-effect": "1.0.2",
"shallowequal": "0.2.2",
"warning": "2.1.0"
},
"devDependencies": {
"babel": "5.8.34",
"babel-eslint": "4.1.8",
"babel-loader": "5.4.0",
"chai": "3.4.1",
"chalk": "1.1.1",
"del": "2.2.0",
"eslint": "1.10.3",
"eslint-config-nfl": "4.0.2",
"eslint-plugin-react": "3.15.0",
"gulp": "3.9.0",
"gulp-cached": "1.1.0",
"gulp-debug": "2.1.2",
"gulp-eslint": "1.1.1",
"gulp-if": "2.0.0",
"gulp-notify": "2.2.0",
"gulp-util": "3.0.7",
"isparta-instrumenter-loader": "0.2.1",
"karma": "0.13.19",
"karma-chai": "0.1.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "0.2.2",
"karma-cli": "0.1.2",
"karma-coverage": "0.5.3",
"karma-html-reporter": "0.2.7",
"karma-mocha": "0.2.1",
"karma-phantomjs-launcher": "0.2.3",
"karma-phantomjs-shim": "1.2.0",
"karma-sourcemap-loader": "0.3.6",
"karma-spec-reporter": "0.0.23",
"karma-tap-reporter": "0.0.6",
"karma-webpack": "1.7.0",
"mocha": "2.3.4",
"phantomjs": "1.9.19",
"react": "0.14.x",
"react-dom": "0.14.6",
"sinon": "1.17.2",
"sinon-chai": "2.8.0",
"webpack": "1.12.11"
},
"scripts": {
"clean": "gulp clean",
"lint": "gulp eslint",
"test": "karma start karma.config.js",
"posttest": "cat ./build/reports/coverage/text.txt",
"pretest": "npm run clean && npm run lint && npm run compile",
"compile": "babel src --out-dir lib",
"prepublish": "npm run compile"
}
}