forked from lokiuz/redraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "redraft",
"version": "0.8.0",
"description": "Renders the result of Draft.js convertToRaw using provided callbacks, works well with React",
"main": "./lib/index.js",
"scripts": {
"compile": "rimraf lib && babel src --out-dir lib",
"watch": "rimraf lib && babel src --out-dir lib --watch",
"lint": "eslint src",
"prepublish": "npm run compile && npm test",
"mocha": "mocha --compilers js:babel-register",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/lokiuz/redraft.git"
},
"keywords": [
"draftjs",
"react"
],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^7.0.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-preset-env": "^1.2.1",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"draft-js": "^0.10.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^11.2.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"linkify-it": "^2.0.3",
"mocha": "^3.0.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.5.2",
"tlds": "^1.183.0"
}
}