forked from digabi/rich-text-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.68 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
{
"name": "rich-text-editor",
"version": "3.5.3",
"description": "Matematiikkaeditori-spike",
"author": "",
"homepage": "https://github.com/digabi/rich-text-editor",
"main": "server/mathSvg.js",
"files": [
"server/mathSvg.js"
],
"scripts": {
"start": "killall node monitor.sh || true; proto/bin/monitor.sh",
"start-node": "HOME=${OPENSHIFT_DATA_DIR:-${HOME}} node proto/index.js",
"stop": "killall node monitor.sh",
"test": "eslint . && proto/testRunner.js",
"test2": "proto/index.js & sleep 5; mocha-chrome http://localhost:${PORT}/tests.html",
"dev": "supervisor -i public,test proto/index.js",
"deploy": "git push -f ssh://[email protected]/~/git/math.git/ master",
"bowerify": "browserify app/rich-text-editor.js -t babelify --no-bundle-external -d -s I -o dist/rich-text-editor.js && browserify node_modules/sanitize-html/dist/index.js -t babelify -d -s I -o dist/sanitize-html.js && bash -c 'cp public/{rich-text-editor.css,*.svg} dist/'",
"browserify": "browserify proto/rich-text-editor-bundle.js -o proto/rich-text-editor-bundle-generated.js",
"generateMathButtons": "scripts/createMathSvg.js",
"generateSite": "rm -rf site; GENERATE_SITE=true node proto/server.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/digabi/rich-text-editor.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-for-of": "^6.23.0",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"baconjs": "^1.0.1",
"body-parser": "^1.18.2",
"browserify": "^16.1.1",
"chai": "^4.1.2",
"chai-jquery": "^2.0.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.16.2",
"express-babelify-middleware": "^0.2.1",
"jquery": "3.3.1",
"jshint": "^2.9.5",
"mathjax": "^2.7.2",
"mathquill": "digabi/mathquill#0.10.1+digabi.24",
"mocha": "^5.0.4",
"mocha-chrome": "^1.0.3",
"ncp": "^2.0.0",
"node-sass-middleware": "^0.11.0",
"sanitize-html": "^1.18.2",
"supervisor": "^0.12.0",
"web-console-reporter": "^1.0.0"
},
"dependencies": {
"mathjax-node": "^1.3.0",
"morgan": "^1.9.0"
},
"browserify-shim": {
"mathquill": {
"depends2": [
"./node_modules/jquery/dist/jquery.js:jQuery"
],
"exports2": "MathQuill"
}
}
}