-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "picr-react-content-editable",
"version": "1.0.0",
"description": "React implementation of content editable element",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint .",
"pre-release": "npm run lint && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"component",
"content editable",
"editable",
"input",
"textarea",
"autosize"
],
"author": "Ivan Kalinin at Picr Inc.",
"repository": {
"type": "git",
"url": "https://github.com/finicprint/picr-react-content-editable.git"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-css-modules-transform": "^1.4.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"peerDependencies": {
"classnames": "^2.0.0",
"react": "^0.14.7 || ^15.0.0-0 || ^16.0.0-0",
"react-dom": "^0.14.7 || ^15.0.0-0 || ^16.0.0-0",
"prop-types": "^15.0.0"
}
}