-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "react-pencil",
"version": "1.1.1",
"description": "A React component that allows single and multiline in-place edits.",
"main": "dist/react-pencil.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rm -f dist/react-pencil.js",
"build": "babel src/react-pencil.jsx --out-file dist/react-pencil.js",
"postbuild": "rm -f example/index.js; webpack example/index.jsx example/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/SokratisVidros/react-pencil.git"
},
"keywords": [
"react",
"react-component",
"edit",
"inline",
"inplace",
"multiline",
"contenteditable"
],
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "6.9.1",
"babel-loader": "6.2.4",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "1.13.1"
},
"peerDependencies": {
"react": "^0.14.6 || 15.x.x || 16.x.x"
},
"author": "Sokratis Vidros",
"license": "MIT",
"bugs": {
"url": "https://github.com/SokratisVidros/react-pencil/issues"
},
"homepage": "https://github.com/SokratisVidros/react-pencil",
"dependencies": {
"autosize-input": "0.2.1"
}
}