stylus/package.json

68 lines
2.1 KiB
JSON
Raw Normal View History

2018-07-21 17:58:54 +00:00
{
"name": "Stylus",
2021-08-30 13:38:44 +00:00
"version": "1.5.22",
2018-07-21 17:58:54 +00:00
"description": "Redesign the web with Stylus, a user styles manager",
"license": "GPL-3.0-only",
"repository": "openstyles/stylus",
"author": "Stylus Team",
2021-08-20 09:15:12 +00:00
"dependenciesNotes": {
"codemirror": "WARNING! Always use an exact version and test it for a while before releasing"
},
"dependencies": {
2021-10-12 13:05:21 +00:00
"codemirror": "5.63.3",
"db-to-cloud": "^0.7.0",
2018-07-21 17:58:54 +00:00
"jsonlint": "^1.6.3",
"less-bundle": "github:openstyles/less-bundle#v0.1.0",
2018-08-09 19:07:59 +00:00
"lz-string-unsafe": "^1.4.4-fork-1",
2021-01-04 10:57:58 +00:00
"stylelint-bundle": "^13.8.0",
"stylus-lang-bundle": "github:openstyles/stylus-lang-bundle#v0.54.7",
"usercss-meta": "^0.12.0",
2021-02-21 06:17:03 +00:00
"webext-launch-web-auth-flow": "^0.1.1"
},
"devDependencies": {
2021-12-12 15:14:31 +00:00
"@rollup/plugin-node-resolve": "^13.0.6",
"archiver": "^4.0.1",
"endent": "^1.4.0",
2021-12-12 15:14:31 +00:00
"escape-string-regexp": "^5.0.0",
2021-02-21 06:17:03 +00:00
"eslint": "^7.20.0",
"fs-extra": "^9.0.0",
"make-fetch-happen": "^8.0.7",
2021-12-12 15:14:31 +00:00
"rollup": "^2.61.1",
"rollup-plugin-cjs-es": "^1.0.1",
"rollup-plugin-iife": "^0.5.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-write-output": "^0.1.1",
2021-12-12 15:21:42 +00:00
"shx": "^0.3.3",
"sync-version": "^1.0.1",
"tiny-glob": "^0.2.6",
2021-12-12 15:43:42 +00:00
"web-ext": "^6.6.0"
2018-07-21 17:58:54 +00:00
},
"scripts": {
2021-12-12 15:14:31 +00:00
"lint": "eslint . --ext .js,.mjs --cache",
"lint-fix": "eslint . --ext .js,.mjs --fix",
"test": "node tools/test.js && npm run lint",
"update-locales": "tx pull --all && node tools/fix-transifex.js",
"update-transifex": "tx push -s",
2021-12-12 15:21:42 +00:00
"build": "shx rm -rf dist/chunks && rollup -c",
"build-vendor": "node tools/build-vendor",
"zip": "npm test && node tools/zip.js",
"start": "web-ext run",
"start-chrome": "web-ext run -t chromium",
"preversion": "npm test",
"version": "sync-version manifest.json && git add .",
"postversion": "npm run zip && git push --follow-tags"
},
"engines": {
"node": ">=10.0.0"
2021-12-12 15:14:31 +00:00
},
"webExt": {
"sourceDir": "dist"
2021-12-12 15:38:17 +00:00
},
"eslintIgnore": [
"dist/vendor/**",
"dist/vendor-overwrites/**",
"dist/chunks/*",
"dist/codemirror/*"
]
2018-07-21 17:58:54 +00:00
}