forked from bustle/mobiledoc-kit
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
66 lines (66 loc) · 2.04 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
{
"name": "@tryghost/mobiledoc-kit",
"version": "0.12.5-ghost.2",
"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.js",
"test": "npm run build:docs && npm run build && testem ci -f testem.js",
"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 <[email protected]> (http://garthpoitras.com/)",
"contributors": [
"Cory Forsyth <[email protected]> (http://coryforsyth.com/)",
"Matthew Beale <[email protected]> (http://madhatted.com/)"
],
"license": "MIT",
"dependencies": {
"mobiledoc-dom-renderer": "0.7.0",
"mobiledoc-text-renderer": "0.4.0"
},
"devDependencies": {
"broccoli": "^1.1.3",
"broccoli-babel-transpiler": "^6.1.2",
"broccoli-cli": "^1.0.0",
"broccoli-funnel": "^2.0.0",
"broccoli-livereload": "^1.0.0",
"broccoli-merge-trees": "^3.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.2",
"testem": "^2.17.0"
},
"main": "dist/commonjs/mobiledoc-kit/index.js",
"volta": {
"node": "10.22.1",
"yarn": "1.22.5"
}
}