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.12 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.0.0",
"main": "./dist/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": "^1.2.1",
"deep-equal": "^1.0.1",
"he": "^0.5.0",
"invariant": "^2.1.1",
"react-side-effect": "^1.0.2",
"shallowequal": "^0.2.2",
"warning": "^2.1.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"chai": "^3.3.0",
"chalk": "^1.1.1",
"del": "^2.0.2",
"eslint": "^1.6.0",
"eslint-config-nfl": "^4.0.2",
"eslint-plugin-react": "^3.5.1",
"gulp": "^3.9.0",
"gulp-cached": "^1.1.0",
"gulp-debug": "^2.1.1",
"gulp-eslint": "^1.0.0",
"gulp-if": "^2.0.0",
"gulp-notify": "^2.2.0",
"gulp-util": "^3.0.6",
"isparta-instrumenter-loader": "^0.2.1",
"karma": "^0.13.10",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "0.1.1",
"karma-coverage": "^0.5.2",
"karma-html-reporter": "^0.2.6",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-phantomjs-shim": "^1.1.1",
"karma-sourcemap-loader": "^0.3.5",
"karma-spec-reporter": "0.0.20",
"karma-tap-reporter": "0.0.4",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"react": "^0.14.x",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0",
"webpack": "^1.12.2"
},
"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 dist",
"prepublish": "npm run compile"
}
}