forked from Rosey/markdown-draft-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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": "markdown-draft-js",
"description": "Convert draftjs blocks to markdown using the marked library, and vice versa.",
"author": "Rose Robertson",
"version": "2.2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Rosey/markdown-draft-js.git"
},
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"lib",
"esm"
],
"scripts": {
"build": "babel src --out-dir lib && NODE_ENV=esm babel src --out-dir esm",
"prepublish": "npm run build",
"test": "karma start --single-run",
"lint": "eslint ./src",
"lint:tests": "eslint ./test"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run lint:tests"
}
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"eslint": "^6.1.0",
"husky": "^3.0.2",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-jasmine": "^2.0.1",
"watchify": "^3.11.1"
},
"dependencies": {
"remarkable": "^2.0.1"
},
"engines": {
"node": ">=10.13.0"
}
}