-
Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
86
87
88
{
"name": "mobiledoc-kit",
"version": "0.15.0",
"description": "A toolkit for building WYSIWYG editors with Mobiledoc",
"repository": "https://github.com/bustle/mobiledoc-kit",
"module": "dist/mobiledoc.js",
"main": "dist/mobiledoc.cjs",
"style": "dist/mobiledoc.css",
"types": "dist/mobiledoc.d.ts",
"exports": {
".": {
"import": "./dist/mobiledoc.js",
"require": "./dist/mobiledoc.cjs"
},
"./style.css": {
"style": "./dist/mobiledoc.css"
}
},
"scripts": {
"start": "rollup -c --watch",
"test:ci": "npm run lint && npm run build && testem ci -f testem-ci.js",
"test": "npm run build && testem ci -f testem.js",
"lint": "prettier 'src/**/*.{js,ts}' --check && eslint 'src/**/*.{js,ts}'",
"format": "prettier 'src/**/*.{js,ts}' --write",
"typecheck": "tsc",
"clean": "rm -rf dist",
"build": "rollup -c",
"build:docs": "typedoc",
"build:website": "npm run build && npm run build:docs",
"deploy:website": "./bin/deploy-website.sh",
"update-changelog": "conventional-changelog -i CHANGELOG.md -r 0 -s",
"prepublishOnly": "npm run build"
},
"keywords": [
"html",
"json",
"wysiwyg",
"editor",
"contenteditable"
],
"files": [
"dist/mobiledoc.*"
],
"author": "Garth Poitras <[email protected]> (https://www.garthpoitras.com)",
"contributors": [
"Zahra Jabini <[email protected]> (http://zahraism.com/)",
"Tom Dale <[email protected]> (https://tomdale.net)",
"Cory Forsyth <[email protected]> (http://coryforsyth.com/)",
"Matthew Beale <[email protected]> (http://madhatted.com/)"
],
"license": "MIT",
"dependencies": {
"mobiledoc-dom-renderer": "0.7.2",
"mobiledoc-text-renderer": "0.4.1"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/jquery": "^3.5.14",
"@types/qunit": "^2.19.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"jquery": "^3.6.1",
"prettier": "^2.7.1",
"qunit": "^2.19.1",
"rollup": "^2.79.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-glob-import": "^0.5.0",
"rollup-plugin-serve": "^2.0.1",
"saucie": "^3.3.3",
"testem": "^3.9.0",
"tslib": "^2.4.0",
"typedoc": "^0.23.12",
"typescript": "^4.8.2"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true
}
}