forked from sstur/draft-js-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "draft-js-export-html",
"version": "0.1.8",
"description": "DraftJS: Export ContentState to HTML",
"main": "lib/main.js",
"scripts": {
"build": "babel src --ignore '_*' --out-dir lib",
"lint": "eslint --max-warnings 0 .",
"prepublish": "npm run build",
"test": "npm run lint && npm run test-src",
"test-src": "mocha"
},
"dependencies": {
"draft-js-tools": "^0.1.1"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"draft-js": "^0.2.2",
"eslint": "2.2.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-flow-vars": "^0.2.1",
"eslint-plugin-react": "^4.2.1",
"expect": "^1.15.1",
"immutable": "^3.7.6",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sstur/draft-js-export-html.git"
},
"keywords": [
"draft-js",
"export-html"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/sstur/draft-js-export-html/issues"
},
"homepage": "https://github.com/sstur/draft-js-export-html#readme"
}