-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "draftjs-to-html",
"version": "0.9.1",
"description": "A library for draftjs to html conversion.",
"main": "lib/draftjs-to-html.js",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.4",
"babel-eslint": "^10.0.3",
"autoprefixer": "^9.7.3",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"draft-js": "^0.11.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-react": "^7.17.0",
"jsdom": "^15.2.1",
"mocha": "^6.2.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.9",
"react-addons-test-utils": "^15.6.2",
"rollup-plugin-babel": "^4.3.3",
"sinon": "^7.5.0",
"@size-limit/preset-small-lib": "^2.2.2"
},
"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": "mocha --require config/test-compiler.js config/test-setup.js js/**/*Test.js",
"lint": "eslint js",
"check": "npm run lint"
},
"author": "Jyoti Puri",
"license": "MIT",
"size-limit": [
{
"path": "lib/*",
"webpack": false,
"limit": "4.5 KB"
}
]
}