forked from yabwe/medium-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.68 KB
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
{
"name": "medium-editor",
"version": "4.2.0",
"author": "Davi Ferreira <hi@daviferreira.com>",
"contributors": [
{
"name": "Nate Mielnik",
"email": "nathan@outlook.com"
},
{
"name": "Noah Chase",
"email": "nchase@gmail.com"
}
],
"description": "Medium.com WYSIWYG editor clone.",
"main": "dist/js/medium-editor.js",
"repository": {
"type": "git",
"url": "https://github.com/daviferreira/medium-editor"
},
"bugs": {
"url": "https://github.com/daviferreira/medium-editor/issues",
"email": "hi@daviferreira.com"
},
"homepage": "http://daviferreira.github.io/medium-editor/",
"keywords": [
"contenteditable",
"editor",
"medium",
"wysiwyg",
"rich-text"
],
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"license": "MIT",
"devDependencies": {
"brfs": "1.4.0",
"grunt": "~0.4.5",
"grunt-autoprefixer": "~3.0.0",
"grunt-bump": "^0.3.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-csslint": "~0.4.0",
"grunt-contrib-cssmin": "~0.12.2",
"grunt-contrib-jasmine": "~0.8.2",
"grunt-contrib-jshint": "^0.11.1",
"grunt-contrib-uglify": "~0.9.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-coveralls": "^1.0.0",
"grunt-plato": "~1.3.0",
"grunt-sass": "~0.18.1",
"grunt-saucelabs": "^8.6.0",
"grunt-template-jasmine-istanbul": "~0.3.3",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"lodash": "~3.6.0",
"time-grunt": "^1.0.0"
},
"scripts": {
"test": "grunt test --verbose",
"test:ci": "grunt travis --verbose",
"start": "open ./demo/index.html"
}
}