forked from tizmagik/react-head
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.07 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
{
"name": "react-head",
"version": "1.2.0",
"description": "SSR-ready Document Head management for React 16+",
"main": "build/index.js",
"files": [
"build"
],
"scripts": {
"prepare": "npm run lint && npm run test && npm run build",
"build": "babel --out-dir build src --ignore src/__tests__",
"build:watch": "npm run build -- --watch",
"example": "cd example && npm i && npm start",
"dev": "run-p build:watch example",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"prettier": "prettier --write --trailing-comma es5 --single-quote --tab-width 2 ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tizmagik/react-head.git"
},
"keywords": [
"react",
"head",
"portals",
"ssr",
"isomorphic"
],
"author": "Jeremy Gayed (https://github.com/tizmagik)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tizmagik/react-head/issues"
},
"homepage": "https://github.com/tizmagik/react-head#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.4",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"prop-types": ">=15"
},
"jest": {
"roots": [
"./src"
],
"setupFiles": [
"raf/polyfill",
"./utils/setup"
]
},
"lint-staged": {
"*.{js,json}": [
"npm run prettier",
"git add"
]
}
}