-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
57 lines (57 loc) · 1.39 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
{
"name": "react-editable-json-tree",
"version": "2.3.0",
"description": "React Editable Json Tree",
"source": "src/JsonTree.js",
"main": "dist/JsonTree.cjs.js",
"module": "dist/JsonTree.esm.js",
"types": "dist/JsonTree.d.ts",
"targets": {
"types": false
},
"scripts": {
"build": "parcel build",
"prepublishOnly": "yarn run build",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "parcel watch",
"yalcInit": "yalc publish && cd ./dev_app && yalc add react-editable-json-tree",
"yalcPush": "yalc publish --push"
},
"keywords": [
"React",
"Editable",
"Json",
"Tree",
"Customizable"
],
"repository": {
"type": "git",
"url": "[email protected]:oxyno-zeta/react-editable-json-tree.git"
},
"author": "Oxyno-zeta",
"contributors": [
"Phanabani"
],
"license": "MIT",
"browserslist": "> 0.5%, last 2 versions, not dead",
"engines": {
"node": ">= 8"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.7.0",
"yalc": "^1.0.0-pre.53"
}
}