-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.89 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
{
"name": "sphinx-colorschemed-images",
"version": "0.2.2",
"description": "Include color-scheme aware images in Sphinx projects.",
"repository": {
"type": "git",
"url": "https://github.com/danirus/sphinx-colorschemed-images"
},
"engines": {
"node": ">=20"
},
"main": "dist/js/sphinx-colorschemed-images.js",
"module": "dist/js/sphinx-colorschemed-images.esm.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"homepage": "https://github.com/danirus/sphinx-colorschemed-images",
"scripts": {
"build-module": "rollup --environment ESM:true --config js/rollup.config.js --sourcemap",
"build-script": "rollup --environment ESM:false --config js/rollup.config.js --sourcemap",
"lint": "eslint js/src --cache --cache-location .cache/.eslintcache --report-unused-disable-directives",
"lint-fix": "eslint js/src --cache --cache-location .cache/.eslintcache --fix",
"test": "karma start js/tests/karma.conf.js"
},
"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": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"eslint": "^9.14.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-rollup-preprocessor": "^7.0.8",
"rollup": "^4.24.4",
"rollup-plugin-istanbul": "^5.0.0",
"terser": "^5.36.0"
}
}