This repository was archived by the owner on Jun 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.93 KB
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": "reactjs-title",
"version": "1.1.4",
"description": "Nested document title management for React.js",
"files": [
"*.md",
"es6",
"lib",
"modules/*.js",
"umd"
],
"main": "lib/Title.js",
"module": "es6/Title.js",
"jsnext:main": "es6/Title.js",
"repository": {
"type": "git",
"url": "https://github.com/joshmello/reactjs-title.git"
},
"homepage": "https://github.com/joshmello/reactjs-title",
"bugs": {
"url": "https://github.com/joshmello/reactjs-title/issues"
},
"scripts": {
"build": "npm run build-cjs && npm run build-es6 && npm run build-umd",
"build-cjs": "rimraf lib && babel ./modules --out-dir lib --ignore '**/__tests__/**' --env-name cjs",
"build-es6": "rimraf es6 && babel ./modules --out-dir es6 --ignore '**/__tests__/**' --env-name esm",
"build-umd": "rimraf umd && webpack --config webpack.config.js",
"lint": "eslint modules webpack.config.js",
"test": "npm run lint && node --require @babel/register --require jsdom-global/register --test modules/__tests__/*-test.js"
},
"authors": [
"Josh"
],
"license": "MIT",
"peerDependencies": {
"react": ">=15.5.0",
"prop-types": ">=15.5.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/eslint-parser": "^7.26.8",
"@babel/preset-env": "^7.26.7",
"@babel/preset-react": "^7.26.3",
"@babel/register": "^7.25.9",
"@eslint/js": "^9.19.0",
"babel-loader": "^9.2.1",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"expect": "^29.7.0",
"gzip-size": "^7.0.0",
"jsdom": "^26.0.0",
"jsdom-global": "^3.0.2",
"pretty-bytes": "^6.1.1",
"prop-types": "^15.8.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"tags": [
"react",
"title"
],
"keywords": [
"react",
"react-component",
"title"
]
}