-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.86 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
56
57
58
59
60
61
62
63
{
"name": "smartmd",
"version": "1.0.2",
"description": "Markdown editor support most syntax",
"keywords": [
"markdown",
"editor",
"javascript"
],
"scripts": {
"dev": "rollup -w -c scripts/config.js --environment TARGET:development",
"production": "rollup -c scripts/config.js --environment TARGET:production",
"esm": "rollup -c scripts/config.js --environment TARGET:esm",
"cjs": "rollup -c scripts/config.js --environment TARGET:cjs",
"build": "node scripts/build.js",
"lint": "eslint src"
},
"homepage": "https://github.com/NoisyWinds/smartmd",
"main": "./src/Smartmd.js",
"license": "MIT",
"author": {
"name": "NoisyWinds",
"Email": "[email protected]"
},
"bugs": {
"url": "https://github.com/NoisyWinds/smartmd-editor/issues"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"codemirror": "^5.42.0",
"markdown-it": "^8.4.2"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/runtime": "^7.2.0",
"autoprefixer": "^9.4.2",
"babel-eslint": "^10.0.1",
"cssnano": "^4.1.7",
"eslint": "^5.10.0",
"eslint-plugin-flowtype": "^3.2.0",
"node-sass": "^4.11.0",
"resolve": "^1.3.3",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-replace": "^2.0.0",
"terser": "^3.11.0",
"zlib": "^1.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/NoisyWinds/smartmd"
}
}