-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.88 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
{
"name": "react-click-to-edit",
"version": "1.2.3",
"description": "A simple wrapper component make any text editable.",
"main": "lib/index.js",
"browser": "dist/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"scripts": {
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz serve"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"keywords": [
"react",
"reactjs",
"component",
"simple",
"editable"
],
"author": "Jay Chung <[email protected]> (https://github.com/chungchiehlun)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chungchiehlun/react-click-to-edit.git"
},
"files": [
"dist",
"lib",
"es",
"types"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"@types/classnames": "^2.2.11",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/enzyme-to-json": "^1.5.4",
"@types/jest": "^26.0.20",
"babel-jest": "^26.0.1",
"cross-spawn": "^5.1.0",
"docz": "^2.3.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"husky": "^1.0.0-rc.14",
"jest": "^26.6.3",
"lint-staged": "^7.2.2",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.7.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.40.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"dependencies": {
"classnames": "^2.2.6"
}
}