forked from jpuri/draftjs-to-html
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.56 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
51
52
53
54
55
56
{
"name": "draftjs-to-html",
"version": "0.8.4",
"description": "A library for draftjs to html conversion.",
"main": "lib/draftjs-to-html.js",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"draft-js": "^0.10.4",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.63.1",
"jsdom": "^11.5.1",
"mocha": "^4.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.53.3",
"rollup-plugin-babel": "^3.0.3",
"sinon": "^4.1.4",
"size-limit": "^0.14.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jpuri/draftjs-to-html.git"
},
"scripts": {
"size": "size-limit",
"clean": "rimraf lib",
"build": "npm run clean && rollup -c && npm run size",
"dev": "rollup -c -w",
"test": "NODE_ENV=test mocha --require config/test-compiler.js config/test-setup.js js/**/*Test.js",
"lint": "eslint js",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"check": "npm run lint && npm run flow"
},
"author": "Jyoti Puri",
"license": "MIT",
"size-limit": [
{
"path": "lib/*",
"webpack": false,
"limit": "4.5 KB"
}
]
}