forked from airbnb/react-with-direction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.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
{
"name": "@mahpooya/react-with-direction",
"version": "1.4.6",
"description": "Components to provide and consume RTL or LTR direction in React (Fork for update dependencies specially webpack)",
"author": "Yaniv Zimet <[email protected]>",
"contributors": [
"Mahpooya Damavand <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mahpooya/react-with-direction.git"
},
"homepage": "https://github.com/mahpooya/react-with-direction#readme",
"bugs": {
"url": "https://github.com/airbnb/react-with-direction/issues"
},
"main": "dist/withDirection",
"license": "MIT",
"scripts": {
"prebuild": "npm run clean",
"build": "babel src --out-dir dist",
"lint": "eslint .",
"pretest": "npm run lint",
"test:only": "jest",
"test": "npm run test:only",
"test:watch": "npm run test:only -- --watchAll",
"clean": "rimraf dist",
"prepublish": "safe-publish-latest && npm run build"
},
"dependencies": {
"airbnb-prop-types": "npm:@mahpooya/airbnb-prop-types@^2.16.2",
"brcast": "^2.0.2",
"deepmerge": "^4.3.1",
"direction": "^2.0.1",
"hoist-non-react-statics": "^3.3.2",
"object.assign": "^4.1.4",
"object.values": "^1.1.7",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/plugin-transform-object-assign": "^7.22.5",
"@mahpooya/enzyme-adapter-react-17": "^0.8.1",
"babel-jest": "^29.7.0",
"babel-preset-airbnb": "^5.0.0",
"casual": "^1.6.2",
"chai": "^4.3.10",
"chai-enzyme": "npm:@allenluce/chai-enzyme@^1.0.1",
"cheerio": "=1.0.0-rc.12",
"enzyme": "^3.11.0",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^5.0.5",
"safe-publish-latest": "^2.0.0",
"sinon": "^17.0.0",
"sinon-chai": "^3.7.0",
"sinon-sandbox": "^2.0.6",
"webpack": "^5.89.0"
},
"peerDependencies": {
"react": "^0.14 || ^15 || ^16 || ^17 || ^18",
"react-dom": "^0.14 || ^15 || ^16 || ^17 || ^18"
},
"directories": {
"test": "tests"
},
"keywords": [
"react-with-direction",
"@mahpooya/react-with-direction"
]
}