-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "react-inline-input-edit",
"version": "1.0.4",
"description": "a simple inline input editor for react",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"test": "jest -u",
"test:coverage": "jest --coverage"
},
"keywords": [
"react",
"inline",
"editor",
"input"
],
"author": "William Pei Yuan",
"license": "ISC",
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@testing-library/react": "^10.4.7",
"@types/jest": "^26.0.7",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"dot-prop": ">=5.1.1",
"jest": "^25.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts-ts": "^4.0.8",
"react-test-renderer": "^16.13.1",
"rollup": "^2.23.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.23.0",
"serialize-javascript": ">=3.1.0",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
]
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iamwill123/react-inline-input-edit.git"
},
"bugs": {
"url": "https://github.com/iamwill123/react-inline-input-edit/issues"
},
"homepage": "https://github.com/iamwill123/react-inline-input-edit#readme"
}