-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
{
"name": "react-with-direction",
"version": "1.4.0",
"description": "Components to provide and consume RTL or LTR direction in React",
"author": "Yaniv Zimet <[email protected]>",
"repository": "airbnb/react-with-direction",
"homepage": "https://github.com/airbnb/react-with-direction#readme",
"bugs": "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",
"pretest:only": "npm run react",
"test:only": "jest",
"test": "npm run test:only",
"test:watch": "npm run test:only -- --watchAll",
"clean": "rimraf dist",
"react": "enzyme-adapter-react-install 16",
"prepublish": "safe-publish-latest && npm run build"
},
"dependencies": {
"airbnb-prop-types": "^2.16.0",
"brcast": "^2.0.2",
"deepmerge": "^1.5.2",
"direction": "^1.0.4",
"hoist-non-react-statics": "^3.3.2",
"object.assign": "^4.1.2",
"object.values": "^1.1.5",
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-transform-replace-object-assign": "^1.0.0",
"babel-preset-airbnb": "^2.6.0",
"casual": "^1.6.2",
"chai": "^4.3.4",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "=1.0.0-rc.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-helper": "^1.3.9",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"jest": "^21.2.1",
"react": "^0.14 || ^15 || ^16",
"react-dom": "^0.14 || ^15 || ^16",
"rimraf": "^2.7.1",
"safe-publish-latest": "^1.1.4",
"sinon": "^4.5.0",
"sinon-chai": "^3.7.0",
"sinon-sandbox": "^2.0.6",
"webpack": "^3.12.0"
},
"peerDependencies": {
"react": "^0.14 || ^15 || ^16",
"react-dom": "^0.14 || ^15 || ^16"
}
}