-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "react-prosemirror-document",
"version": "4.0.0",
"description": "Render a ProseMirror document using React components",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"posttest": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rexxars/react-prosemirror-document.git"
},
"keywords": [
"prosemirror",
"react",
"react-component",
"document"
],
"author": "Espen Hovlandsdal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rexxars/react-prosemirror-document/issues"
},
"homepage": "https://github.com/rexxars/react-prosemirror-document#readme",
"devDependencies": {
"chai": "^3.4.1",
"enzyme": "^1.3.1",
"eslint": "^1.10.3",
"eslint-config-vaffel": "^4.0.0",
"eslint-plugin-react": "^3.15.0",
"mocha": "^2.3.4",
"react": "^0.14.6",
"react-addons-test-utils": "^0.14.6",
"react-dom": "^0.14.6"
},
"dependencies": {
"lodash.assign": "^4.0.0",
"lodash.omit": "^4.0.1",
"prop-types": "^15.6.0"
}
}