forked from Rosey/markdown-draft-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "markdown-draft-js",
"description": "Convert draftjs blocks to markdown using the marked library, and vice versa.",
"author": "Rose Robertson",
"version": "1.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Rosey/markdown-draft-js.git"
},
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "karma start --single-run",
"lint": "eslint ./src",
"lint:tests": "eslint ./test"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babelify": "7.3.0",
"browserify": "13.1.0",
"eslint": "3.8.0",
"jasmine": "2.5.2",
"karma": "1.3.0",
"karma-browserify": "5.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-jasmine": "1.0.2",
"jasmine-core": "2.8.0",
"watchify": "3.7.0"
},
"dependencies": {
"remarkable": "1.7.1"
}
}