-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
33 lines (33 loc) · 1012 Bytes
/
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
{
"name": "@webfashionist/richtext",
"version": "1.1.1",
"description": "WYSIWYG editor developed as jQuery plugin",
"directories": {
"example": "examples"
},
"scripts": {
"start": "http-server -p 8080",
"installuglify": "npm i uglify-js -g",
"uglify": "npx uglifyjs src/jquery.richtext.js > src/jquery.richtext.min.js --comments --warn",
"test": "cypress run -b chrome",
"minifycss": "npx sass --style=compressed src/richtext.scss:src/richtext.min.css",
"build": "npm run uglify && npm run minifycss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webfashionist/RichText.git"
},
"author": "webfashionist",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/webfashionist/RichText/issues"
},
"homepage": "https://github.com/webfashionist/RichText#readme",
"devDependencies": {
"cypress": "^14.0.0",
"http-server": "^14.1.1",
"pa11y-ci": "^3.1.0",
"sass": "^1.83.0",
"uglify-js": "^3.19.3"
}
}