-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
103 lines (103 loc) · 3.31 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
{
"name": "react-i13n",
"description": "React I13n provides a performant and scalable solution to application instrumentation.",
"version": "3.2.0",
"main": "index.js",
"module": "index.es.js",
"repository": {
"type": "git",
"url": "[email protected]:yahoo/react-i13n.git"
},
"scripts": {
"benchmark": "NODE_ENV=production node tests/benchmark/benchmark",
"clean": "rm -rf dist/* && rm -rf dist-es/*",
"dev": "grunt functional-debug",
"dist": "npm run clean && npm run dist-cjs && npm run dist-es",
"dist-cjs": "BABEL_ENV=dist babel src --out-dir dist",
"dist-es": "BABEL_ENV=dist-es babel src --out-dir dist-es",
"dist-functional": "BABEL_ENV=dist babel tests/functional/**/*.jsx --out-dir tests/functional",
"func": "npm run dist && npm run dist-functional && grunt functional",
"func-debug": "npm run dist && npm run dist-functional && grunt functional-debug",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepublish": "npm run dist",
"test": "jest src --coverage --coverageReporters=lcov",
"unit": "jest src"
},
"dependencies": {
"debug": "^4.1.1",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.7.2",
"react-in-viewport": "^1.0.0-alpha.16",
"subscribe-ui-event": "^2.0.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/eslint-parser": "^7.22.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@testing-library/react": "^15.0.5",
"babel-loader": "^9.0.1",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"benchmark": "^2.1.3",
"es5-shim": "^4.5.12",
"eslint": "^8.44.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.0.4",
"expect.js": "^0.3.1",
"grunt": "^1.0.4",
"grunt-atomizer": "^3.1.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-saucelabs": "^9.0.0",
"grunt-webpack": "^7.0.0",
"intersection-observer": "^0.12.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"jest-junit": "^16.0.0",
"minimist": "^1.2.0",
"mocha": "^10.0.0",
"object-assign": "^4.0.0",
"pre-commit": "^1.0.0",
"prettier": "^3.0.0",
"promise": "^8.0.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"webpack": "^5.64.4",
"webpack-dev-server": "^5.0.4",
"xunit-file": "^2.0.0"
},
"keywords": [
"react",
"react-component",
"i13n",
"instrumentation"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"precommit": [
"lint",
"test"
],
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/react-i13n/blob/master/LICENSE.md"
}
]
}