-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
106 lines (106 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-head",
"version": "3.4.2",
"description": "SSR-ready Document Head management for React 16+",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "src/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prepare": "npm run test && npm run build",
"build:flow": "echo \"// @flow\n\nexport * from '../src'\" > dist/index.cjs.js.flow",
"build:watch": "rollup -c --watch",
"build": "rollup -c && npm run build:flow",
"example": "cd example && npm ci && npm run start",
"dev": "run-p build:watch example",
"test": "jest --no-cache",
"posttest": "npm run lint",
"test:watch": "jest --watch",
"typecheck:flow": "flow check --max-warnings=0",
"lint": "eslint ./src",
"prettier": "prettier --write \"src/**/*.js\"",
"precommit": "lint-staged"
},
"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>",
"contributors": [
"Bogdan Chadkin <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tizmagik/react-head/issues"
},
"homepage": "https://github.com/tizmagik/react-head#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.5.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"flow-bin": "^0.135.0",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"raf": "^3.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-powerplug": "^1.0.0",
"react-test-renderer": "^16.13.1",
"rollup": "^2.29.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"peerDependencies": {
"react": ">=16.3",
"react-dom": ">=16.3"
},
"jest": {
"roots": [
"./tests"
],
"setupFiles": [
"raf/polyfill"
]
},
"lint-staged": {
"*.{json,js}": [
"prettier --write",
"eslint ./src",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
}
}