forked from jpuri/draftjs-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.45 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": "draftjs-to-markdown-v2",
"description": "A library for draftjs to markdown conversion.",
"main": "lib/draftjs-to-markdown-v2.js",
"author": "Walisson Rodrigo",
"license": "MIT",
"version": "1.0.1",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.0",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.6",
"enzyme": "^3.11.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-react": "^7.28.0",
"flow-bin": "^0.172.0",
"immutable": "4.0.0",
"jsdom": "^19.0.0",
"mocha": "^9.2.0",
"rimraf": "^3.0.2",
"sinon": "^13.0.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/WalissonRodrigo/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"
}
}