-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.65 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.65 KB
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
{
"name": "django-comments-xtd",
"version": "3.0.0b0",
"private": true,
"type": "module",
"description": "django-comments-xtd frontend assets",
"module": "django_comments_xtd/static/django_comments_xtd/js/djcx.min.js",
"sass": "scss/",
"homepage": "https://github.com/danirus/django-comments-xtd",
"repository": {
"type": "git",
"url": "https://github.com/danirus/django-comments-xtd"
},
"engines": {
"node": ">=22"
},
"scripts": {
"css-all": "npm-run-all css-clean css-lint css-compile css-minify",
"css-clean": "npm-run-all css-clean-djcx css-clean-example",
"css-clean-djcx": "del django_comments_xtd/static/django_comments_xtd/css/djcx-styles.*",
"css-clean-example": "del example/shared/frontend/css/example-styles.*",
"css-compile": "npm-run-all css-compile-djcx css-compile-example",
"css-compile-djcx": "sass --style expanded --source-map --embed-sources --no-error-css scss/:django_comments_xtd/static/django_comments_xtd/css/",
"css-compile-example": "sass --style expanded --source-map --embed-sources --no-error-css example/shared/frontend/scss/:example/shared/frontend/css/",
"css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-vars \"css-lint-stylelint scss/ example/shared/frontend/scss/\"",
"css-lint-stylelint": "stylelint --cache --cache-location .cache/.stylelintcache --rd",
"css-lint-vars": "fusv scss/ example/shared/frontend/scss/",
"css-minify": "cleancss -O1 --batch --batch-suffix '.min' --format breakWith=lf --with-rebase --source-map --output django_comments_xtd/static/django_comments_xtd/css django_comments_xtd/static/django_comments_xtd/css/djcx-styles.css",
"css-watch": "nodemon --watch scss/ --watch example/shared/frontend/scss/ --ext scss --exec \"npm-run-all css-lint css-compile-djcx css-compile-example\"",
"js-all": "npm-run-all js-clean js-lint js-compile js-minify",
"js-clean": "del django_comments_xtd/static/django_comments_xtd/js/djcx.*",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .js",
"js-lint-fix": "eslint --cache --cache-location .cache/.eslintcache --ext .js --fix",
"js-compile": "rollup --config js/rollup.config.mjs --sourcemap",
"js-minify": "terser --compress passes=2 --mangle --comments \"/^!/\" --source-map \"content=django_comments_xtd/static/django_comments_xtd/js/djcx.js.map,includeSources,url=djcx.min.js.map\" --output django_comments_xtd/static/django_comments_xtd/js/djcx.min.js django_comments_xtd/static/django_comments_xtd/js/djcx.js",
"js-watch": "nodemon --watch js/src/ --watch js/src/ --ext js --exec \"npm-run-all js-compile js-minify\"",
"test": "grunt test --verbose"
},
"keywords": [],
"author": "Daniela Rus Morales",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"c8": "^10.1.3",
"chai": "^6.2.2",
"clean-css-cli": "^5.6.3",
"cypress": "^15.12.0",
"del-cli": "^7.0.0",
"eslint": "^9.14.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^62.0.0",
"find-unused-sass-variables": "^6.1.0",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"grunt-contrib-qunit": "^10.1.1",
"grunt-shell": "^4.0.0",
"nodemon": "^3.1.7",
"npm-run-all2": "^8.0.1",
"qunit": "^2.25.0",
"rollup": "^4.24.4",
"sass": "^1.97.0",
"sinon": "^21.0.1",
"stylelint": "^16.19.1",
"stylelint-config-standard-scss": "^16.0.0",
"terser": "^5.36.0"
}
}