-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.15 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
{
"name": "react-declarative-head",
"version": "1.0.5",
"description": "Head side effects handled with a declarative component",
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"shallowequal": "^0.2.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"enzyme": "^2.6.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^9.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"express": "^4.14.0",
"istanbul": "^1.0.0-alpha",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"react-addons-test-utils": "^15.3.2",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-node-externals": "^1.5.4",
"webpack-shell-plugin": "^0.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/josepapaianni/react-declarative-head"
},
"bugs": {
"url": "https://github.com/josepapaianni/react-declarative-head/issues"
},
"keywords": [
"react",
"component",
"react-component",
"head",
"document.title",
"tags",
"jsx"
],
"files": [
"lib/",
"README.md"
],
"main": "lib/react-declarative-head.js",
"scripts": {
"test": "NODE_ENV=test _mocha test/*.spec.js --compilers js:babel-register",
"lint": "NODE_ENV=test eslint src/** test/*.js",
"pretest": "NODE_ENV=test npm run build",
"prepublish": "npm run build",
"posttest": "npm run lint",
"coverage": "NODE_ENV=test istanbul cover _mocha -- test/*.spec.js --compilers js:babel-register",
"watch": "./node_modules/.bin/webpack --watch --config ./config/webpack.development.js",
"build": "./node_modules/.bin/webpack --config ./config/webpack.production.js",
"watch-client": "./node_modules/.bin/webpack --watch --config ./config/webpack.client.js"
},
"author": "",
"license": "ISC"
}