-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "draftjs-to-markdown",
"version": "0.6.0",
"description": "A library for draftjs to markdown conversion.",
"main": "lib/draftjs-to-markdown.js",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/register": "^7.7.4",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"enzyme": "^3.10.0",
"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",
"flow-bin": "^0.113.0",
"immutable": "^4.0.0-rc.1",
"jsdom": "^15.2.1",
"mocha": "^6.2.2",
"react": "^16.12.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jpuri/draftjs-to-markdown.git"
},
"scripts": {
"clean": "rimraf lib",
"build:webpack": "NODE_ENV=production webpack --mode production --config config/webpack.prod.config.js",
"build": "npm run clean && npm run build:webpack",
"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",
"dependencies": {}
}