forked from sstur/draft-js-import-element
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 KB
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
{
"name": "draft-js-import-element",
"version": "0.2.0",
"description": "DraftJS: Import Element to ContentState",
"main": "lib/main.js",
"scripts": {
"build": "babel src --ignore '_*' --out-dir lib",
"lint": "eslint --max-warnings 0 .",
"typecheck": "flow",
"prepublish": "npm run build",
"test": "npm run lint && npm run typecheck && npm run test-src",
"test-src": "mocha src/__tests__/*.js src/**/__tests__/*.js"
},
"dependencies": {
"draft-js": ">=0.5.0",
"draft-js-utils": "^0.1.7",
"fbjs": "^0.8.6",
"synthetic-dom": "^0.2.1",
"to-style": "^1.3.3"
},
"peerDependencies": {
"immutable": "3.x.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.10.2",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.20.2",
"flow-bin": "^0.35.0",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"react": "^15.4.0",
"react-dom": "^15.4.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sstur/draft-js-import-element.git"
},
"keywords": [
"draft-js",
"import-element"
],
"author": "sstur@me.com",
"contributors": [
{
"name": "Per Nilsson",
"url": "https://github.com/coopy"
},
{
"name": "Simon Sturmer",
"url": "https://github.com/sstur"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/sstur/draft-js-import-element/issues"
},
"homepage": "https://github.com/sstur/draft-js-import-element#readme"
}