-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
package.json
89 lines (89 loc) · 2.44 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
{
"name": "medium-editor",
"version": "5.23.3",
"author": "Davi Ferreira <[email protected]>",
"contributors": [
{
"name": "Nate Mielnik",
"email": "[email protected]"
},
{
"name": "Noah Chase",
"email": "[email protected]"
},
{
"name": "Jeremy Benoist",
"email": "[email protected]"
}
],
"description": "Medium.com WYSIWYG editor clone.",
"main": "dist/js/medium-editor.js",
"repository": {
"type": "git",
"url": "https://github.com/yabwe/medium-editor"
},
"bugs": {
"url": "https://github.com/yabwe/medium-editor/issues",
"email": "[email protected]"
},
"homepage": "http://yabwe.github.io/medium-editor/",
"keywords": [
"contenteditable",
"editor",
"medium",
"wysiwyg",
"rich-text"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"license": "MIT",
"devDependencies": {
"brfs": "2.0.2",
"connect": "3.7.0",
"grunt": "1.2.1",
"grunt-autoprefixer": "3.0.4",
"grunt-bump": "0.8.0",
"grunt-cli": "1.3.2",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-connect": "2.1.0",
"grunt-contrib-csslint": "2.0.0",
"grunt-contrib-cssmin": "3.0.0",
"grunt-contrib-jasmine": "1.0.3",
"grunt-contrib-jshint": "2.1.0",
"grunt-contrib-uglify": "4.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-coveralls": "2.0.0",
"grunt-jscs": "3.0.1",
"grunt-karma": "4.0.0",
"grunt-plato": "1.4.0",
"grunt-sass": "3.1.0",
"grunt-template-jasmine-istanbul": "0.4.0",
"jasmine": "3.6.1",
"jasmine-console-reporter": "3.1.0",
"jasmine-core": "3.6.0",
"jshint-stylish": "2.2.1",
"karma": "5.1.0",
"karma-browserstack-launcher": "1.6.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-coveralls": "2.1.0",
"karma-firefox-launcher": "1.3.0",
"karma-jasmine": "3.3.1",
"karma-jasmine-html-reporter": "1.5.4",
"karma-phantomjs-launcher": "1.0.4",
"karma-spec-reporter": "0.0.32",
"load-grunt-tasks": "5.1.0",
"lodash": "4.17.19",
"open-cli": "6.0.1",
"phantomjs-prebuilt": "2.1.16",
"serve-static": "1.14.1",
"time-grunt": "2.0.0"
},
"scripts": {
"test": "node node_modules/grunt-cli/bin/grunt test --verbose",
"test:ci": "node node_modules/grunt-cli/bin/grunt travis --verbose",
"start": "open-cli ./demo/index.html",
"build": "node node_modules/grunt-cli/bin/grunt"
}
}