-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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": "mathylem",
"version": "0.0.1",
"description": "WYSIWYG mathematics equation editor",
"main": "build/mathylem.node.js",
"browser": "build/mathylem.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"flow": "flow",
"start": "webpack-dev-server --open --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ylemkimon/mathylem.git"
},
"keywords": [
"math",
"wysiwyg",
"equation",
"editor"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ylemkimon/mathylem/issues"
},
"homepage": "https://github.com/ylemkimon/mathylem",
"dependencies": {
"eventemitter3": "^3.0.0",
"katex": "^0.10.0-rc.1",
"symbol-tree": "^3.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/runtime": "^7.0.0",
"autoprefixer": "^9.1.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"cssnano": "^4.0.1",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"file-loader": "^2.0.0",
"flow-bin": "^0.80.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.0.5",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.7.2",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "^4.9.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}