forked from bustle/mobiledoc-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.97 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
{
"name": "mobiledoc-kit",
"version": "0.10.20",
"description": "A toolkit for building WYSIWYG editors with Mobiledoc",
"repository": "https://github.com/bustle/mobiledoc-kit",
"scripts": {
"start": "broccoli serve --host 0.0.0.0",
"test:ci": "npm run build:docs && npm run build && testem ci -f testem-ci.json",
"test": "npm run build:docs && npm run build && testem ci -f testem.json",
"build": "rm -rf dist && broccoli build dist",
"build:docs": "jsdoc -c ./.jsdoc",
"build:website": "npm run build && npm run build:docs && ./bin/build-website.sh",
"deploy:website": "./bin/deploy-website.sh",
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s",
"version": "npm run update-changelog && git add CHANGELOG.md",
"prepublish": "npm run build"
},
"keywords": [
"html",
"json",
"wysiwyg",
"editor",
"contenteditable"
],
"files": [
"index.js",
"src",
"dist/amd",
"dist/commonjs",
"dist/global",
"dist/css"
],
"author": "Garth Poitras <garth22@gmail.com> (http://garthpoitras.com/)",
"contributors": [
"Cory Forsyth <cory.forsyth@gmail.com> (http://coryforsyth.com/)",
"Matthew Beale <matt.beale@madhatted.com> (http://madhatted.com/)"
],
"license": "MIT",
"dependencies": {
"mobiledoc-dom-renderer": "0.6.5",
"mobiledoc-text-renderer": "0.3.2"
},
"devDependencies": {
"broccoli": "^1.1.3",
"broccoli-babel-transpiler": "^6.1.2",
"broccoli-cli": "^1.0.0",
"broccoli-funnel": "^1.2.0",
"broccoli-livereload": "^1.0.0",
"broccoli-merge-trees": "^2.0.0",
"broccoli-multi-builder": "^0.3.0",
"broccoli-sane-watcher": "^1.1.4",
"broccoli-string-replace": "^0.1.1",
"broccoli-test-builder": "^0.4.0",
"conventional-changelog": "^1.1.3",
"conventional-changelog-cli": "^1.3.2",
"jquery": "^3.2.1",
"jsdoc": "^3.5.4",
"saucie": "^3.3.0",
"testem": "^1.18.4"
},
"main": "dist/commonjs/mobiledoc-kit/index.js"
}