-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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": "addhoc",
"version": "2.1.0",
"description": "Handy little helper to create proper HOC functions complete with hoisted statics and forwarded refs",
"main": "./lib/index",
"browser": "./lib/index",
"module": "./index",
"react-native": "./index",
"scripts": {
"build": "babel -d lib index.js",
"prepublishOnly": "npm run build",
"lint": "eslint --fix *.js",
"test": "nyc mocha --require setup-env test/*.test.js",
"posttest": "npm run lint",
"coverage": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/godaddy/addhoc.git"
},
"keywords": [
"react",
"hoc",
"component",
"ref"
],
"author": "Jonathan Keslin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/godaddy/addhoc/issues"
},
"homepage": "https://github.com/godaddy/addhoc#readme",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.16.9",
"@types/react": "^17.0.38",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"assume": "^2.3.0",
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"eslint": "^8.7.0",
"eslint-config-godaddy-react": "^8.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-react": "^7.28.0",
"jsdom": "^19.0.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"setup-env": "^1.2.4"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
},
"peerDependencies": {
"react": "17.x || 18.x"
}
}