-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "react-component-update",
"version": "1.6.0",
"description": "Extends the native React Component to streamline updates",
"main": "lib/index.js",
"files": [
"lib/**/!(*.spec).js"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "babel src --out-dir lib --delete-dir-on-start",
"changelog": "npx auto-changelog",
"lint": "eslint ./ --report-unused-disable-directives",
"release": "npx release-it --no-increment",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wimpyprogrammer/react-component-update.git"
},
"author": "Drew Keller <drew@wimpyprogrammer.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wimpyprogrammer/react-component-update/issues"
},
"homepage": "https://github.com/wimpyprogrammer/react-component-update#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^29.0.1",
"create-react-class": "^15.6.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-adapter-react-helper": "^1.3.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^29.1.2",
"jest-extended": "^4.0.0",
"react": "<17",
"react-dom": "<17",
"react-test-renderer": "<17"
},
"peerDependencies": {
"react": "<17"
}
}