forked from bustle/mobiledoc-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.61 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
{
"name": "mobiledoc-kit",
"version": "0.13.2",
"description": "A toolkit for building WYSIWYG editors with Mobiledoc",
"repository": "https://github.com/bustle/mobiledoc-kit",
"module": "dist/mobiledoc.js",
"main": "dist/mobiledoc.cjs",
"exports": {
"import": "./dist/mobiledoc.js",
"require": "./dist/mobiledoc.cjs"
},
"scripts": {
"start": "rollup -c --watch",
"test:ci": "yarn build:docs && yarn build && testem ci -f testem-ci.js",
"test": "yarn format && yarn build && testem ci -f testem.js",
"lint": "prettier src/**/*.{js,ts} --check && eslint src/**/*.{js,ts}",
"format": "prettier src --write",
"build": "rollup -c",
"build:docs": "jsdoc -c ./.jsdoc",
"build:website": "yarn build:docs && yarn build && ./bin/build-website.sh",
"deploy:website": "./bin/deploy-website.sh",
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s",
"version": "yarn update-changelog && git add CHANGELOG.md",
"prepublishOnly": "yarn build"
},
"keywords": [
"html",
"json",
"wysiwyg",
"editor",
"contenteditable"
],
"files": [
"dist/mobiledoc.js",
"dist/mobiledoc.cjs",
"dist/mobiledoc.css"
],
"author": "Garth Poitras <garth22@gmail.com> (http://garthpoitras.com/)",
"contributors": [
"Zahra Jabini <zahra.arch@gmail.com> (http://zahraism.com/)",
"Tom Dale <tom@tomdale.net> (https://tomdale.net)",
"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.7.0",
"mobiledoc-text-renderer": "0.4.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-typescript": "^5.0.2",
"@types/jquery": "^3.5.2",
"@types/qunit": "^2.9.5",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"jquery": "^3.5.1",
"jsdoc": "^3.6.5",
"prettier": "^2.1.1",
"qunit": "^2.11.1",
"rollup": "^2.26.9",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-glob-import": "^0.4.5",
"rollup-plugin-serve": "^1.0.4",
"saucie": "^3.3.3",
"testem": "^3.2.0",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"volta": {
"node": "12.14.1",
"yarn": "1.22.4"
}
}