forked from nymag/medium-editor-phrase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.99 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
{
"name": "medium-editor-phrase",
"version": "1.0.2",
"description": "Phrase button for Medium Editor; useful for adding span tags to text.",
"main": "dist/medium-editor-phrase.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src",
"karma": "karma start",
"karma-browserstack": "karma start karma.browserstack.conf.js",
"karma-travis": "karma start karma.travis.conf.js",
"test": "npm run lint && npm run karma",
"test-browserstack": "npm run lint && npm run karma-browserstack",
"test-travis": "npm run lint && npm run karma-travis",
"prepublish": "gulp"
},
"config": {
"blanket": {
"pattern": [
"src"
],
"data-cover-never": [
"node_modules",
"dist"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/nymag/medium-editor-phrase.git"
},
"keywords": [
"medium",
"editor",
"wysiwyg",
"phrase",
"button",
"span"
],
"author": "New York Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/nymag/medium-editor-phrase/issues"
},
"homepage": "https://github.com/nymag/medium-editor-phrase",
"devDependencies": {
"babel-preset-es2015-script": "^1.0.0",
"babelify": "^7.3.0",
"blanket": "^1.2.3",
"browserify": "^13.0.0",
"browserify-istanbul": "^0.2.1",
"chai": "^3.4.1",
"chai-things": "^0.2.0",
"coveralls": "^2.11.2",
"eslint": "^3.2.2",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"karma": "^0.13.15",
"karma-browserify": "^5.0.1",
"karma-browserstack-launcher": "^0.1.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.0",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
"karma-spec-reporter": "0.0.23",
"medium-editor": "^5.5.1",
"mocha": "^2.2.5",
"pump": "^1.0.1"
}
}