-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.48 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@robertfyffe/react-editable-textbox",
"version": "1.0.1",
"description": "React component for creating a contentEditable textbox.",
"main": "dist/index.js",
"scripts": {
"start": "yarn webpack-dev-server --config ./scripts/webpack.config.js --inline --host 127.0.0.1 --content-base examples/",
"build": "cross-env NODE_ENV=production babel src/ --out-dir dist/",
"test": "yarn test:lint && cross-env NODE_ENV=test karma start",
"test:lint": "yarn eslint --cache --quiet \"src/**/*.js\"",
"test:lint:fix": "yarn test:lint --fix",
"release": "standard-version",
"commit": "git-cz",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js 2>/dev/null"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertfyffe/react-editable-textbox.git"
},
"keywords": [
"react-component",
"contenteditable",
"editable-textbox",
"react-editable-textbox",
"react",
"react-dom"
],
"author": "Robert Fyffe",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertfyffe/react-editable-textbox/issues"
},
"homepage": "https://github.com/robertfyffe/react-editable-textbox#readme",
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/css": "^10.0.27",
"@emotion/styled": "^10.0.27",
"dompurify": "^2.0.10",
"emotion-theming": "^10.0.27"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"commitizen": "^4.0.4",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-customizable": "^6.2.0",
"cz-customizable-ghooks": "^1.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lint-staged": "^10.1.7",
"mocha": "^7.1.2",
"node-html-parser": "^1.2.16",
"prettier": "^2.0.5",
"prettier-eslint": "^9.0.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"should": "^13.2.3",
"sinon": "^9.0.2",
"standard-version": "^7.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"directories": {
"example": "examples"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn cross-env NODE_ENV=test karma start --single-run"
}
},
"lint-staged": {
"src/**/*.js": [
"yarn eslint --fix"
]
}
}