-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 4.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "js-markdown",
"author": "falalxiao",
"version": "1.1.5",
"description": "A markdown language js compiler.",
"main": "./src/index.js",
"scripts": {
"pre-publish": "rimraf dist && gulp copy",
"do-publish": "npm run pre-publish && cd dist && npm publish",
"test": "cross-env NODE_ENV=test mocha $NODE_DEBUG_OPTION test/*.test.js --require @babel/register",
"dev": "cross-env NODE_ENV=development node build/dev/dev-server.js",
"clean": "rimraf docs",
"dll": "cross-env NODE_ENV=production node build/dll/dll.js",
"package": "cross-env NODE_ENV=production node build/prod/prod.js",
"build": "npm run clean && npm run dll && npm run package",
"demo": "cross-env NODE_ENV=production node build/demo/demo-server.js",
"start": "npm run build && npm run demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fatalxiao/js-markdown"
},
"keywords": [
"javascript",
"markdown",
"paser"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fatalxiao/js-markdown/issues"
},
"homepage": "https://fatalxiao.github.io/js-markdown",
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.1",
"@babel/plugin-proposal-do-expressions": "7.12.1",
"@babel/plugin-proposal-export-default-from": "7.12.1",
"@babel/plugin-proposal-export-namespace-from": "7.12.1",
"@babel/plugin-proposal-function-bind": "7.12.1",
"@babel/plugin-proposal-function-sent": "7.12.1",
"@babel/plugin-proposal-json-strings": "7.12.1",
"@babel/plugin-proposal-logical-assignment-operators": "7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1",
"@babel/plugin-proposal-numeric-separator": "7.12.7",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-proposal-pipeline-operator": "7.12.1",
"@babel/plugin-proposal-throw-expressions": "7.12.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.12.7",
"@babel/preset-react": "7.12.7",
"@babel/register": "7.12.1",
"@babel/runtime": "7.12.5",
"assets-webpack-plugin": "6.0.4",
"babel-loader": "8.2.1",
"babel-plugin-transform-import-sync": "2.0.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"brace": "0.11.1",
"browserify": "17.0.0",
"chai": "4.2.0",
"compression": "1.7.4",
"compression-webpack-plugin": "6.1.1",
"connect-history-api-fallback": "1.6.0",
"copy-webpack-plugin": "6.3.2",
"cross-env": "7.0.2",
"css-loader": "5.0.1",
"eventsource-polyfill": "0.9.6",
"express": "4.17.1",
"fast-sass-loader": "1.5.0",
"file-loader": "6.2.0",
"friendly-errors-webpack-plugin": "1.7.0",
"github-markdown-css": "4.0.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-util": "3.0.8",
"happypack": "5.0.1",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.5.0",
"html-webpack-tags-plugin": "2.0.17",
"mocha": "8.2.1",
"node-sass": "5.0.0",
"opn": "6.0.0",
"ora": "5.1.0",
"path": "0.12.7",
"postcss": "8.1.6",
"postcss-loader": "4.0.4",
"postcss-preset-env": "6.7.0",
"prop-types": "15.7.2",
"raw-loader": "4.0.2",
"react": "17.0.1",
"react-ace": "9.2.0",
"react-dom": "17.0.1",
"react-hot-loader": "4.13.0",
"rimraf": "3.0.2",
"sass-loader": "10.1.0",
"style-loader": "2.0.0",
"through2": "4.0.2",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "4.1.1",
"webpack": "4.43.0",
"webpack-dev-middleware": "4.0.2",
"webpack-hot-middleware": "2.25.0",
"webpack-merge": "5.4.0"
}
}