-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
87 lines (87 loc) · 2.34 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
78
79
80
81
82
83
84
85
86
87
{
"name": "react-edit-text",
"version": "5.1.1",
"description": "Simple editable text component for React",
"author": "Brian Min <bymi15@yahoo.com> (https://github.com/bymi15)",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=16 || ^14.17"
},
"scripts": {
"build": "microbundle --no-compress --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"start": "microbundle watch --no-compress --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "npm run build && cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/bymi15/react-edit-text.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"keywords": [
"react",
"edit",
"text",
"react-edit-text",
"editable",
"input",
"textbox",
"textarea"
],
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.2.0",
"cross-env": "^7.0.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.30.0",
"gh-pages": "^4.0.0",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^5.0.1",
"semantic-release": "^19.0.3"
},
"files": [
"dist"
],
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.8.1"
},
"jest": {
"coverageThreshold": {
"global": {
"lines": 90
}
}
},
"babel": {
"presets": [
"react-app"
]
}
}