-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.68 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.68 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
{
"name": "skillbridge",
"version": "3.5.8",
"private": true,
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"glossary": "node scripts/check-glossary.js",
"validate": "node scripts/validate-translations.js",
"build:zip": "rm -f store-assets/skillbridge.zip && zip -r store-assets/skillbridge.zip manifest.json _locales/ src/ assets/icons/ -x '*.DS_Store'",
"build:firefox": "node scripts/build-firefox.js",
"build:firefox:zip": "npm run build:firefox && cd dist/firefox && rm -f ../../store-assets/skillbridge-firefox.zip && zip -r ../../store-assets/skillbridge-firefox.zip . -x '*.DS_Store'",
"check:selectors": "node scripts/check-selectors.js",
"check:dicts": "node scripts/check-dicts.js",
"check:sync": "node scripts/check-bg-sync.js",
"docs": "node scripts/generate-docs.js",
"lint": "eslint src/ tests/ scripts/",
"lint:fix": "eslint src/ tests/ scripts/ --fix",
"format": "prettier --write 'src/**/*.{js,css,html}' 'tests/**/*.js' 'scripts/**/*.js'",
"format:check": "prettier --check 'src/**/*.{js,css,html}' 'tests/**/*.js' 'scripts/**/*.js'",
"build:bundle": "node scripts/build-bundle.js",
"build:bundle:zip": "npm run build:bundle && cd dist/bundled && rm -f ../../store-assets/skillbridge-bundled.zip && zip -r ../../store-assets/skillbridge-bundled.zip . -x '*.DS_Store'"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.5",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"prettier": "^3.8.1"
}
}