| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "name": "electron-devtools-installer",
- "version": "4.0.0",
- "description": "An easy way to install Dev Tools extensions into Electron applications",
- "main": "dist/index.js",
- "types": "dist/index.d.ts",
- "scripts": {
- "prettier:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
- "prettier:write": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
- "compile": "tsc",
- "prepare": "npm run compile",
- "pretest-unit": "npm run compile",
- "test": "npm run prettier:check && npm run test-unit",
- "test-unit": "electron-mocha ./test/**/*_spec.ts --recursive --require ts-node/register --timeout 60000 -R spec-xunit-file -r test/setup.ts"
- },
- "keywords": [
- "electron",
- "dev",
- "tools"
- ],
- "author": {
- "name": "Samuel Attard",
- "email": "samuel.r.attard@gmail.com",
- "url": "https://www.samuelattard.com"
- },
- "bugs": {
- "url": "https://github.com/MarshallOfSound/electron-devtools-installer/issues"
- },
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/MarshallOfSound/electron-devtools-installer.git"
- },
- "devDependencies": {
- "@types/chai": "^4.2.14",
- "@types/chai-as-promised": "^7.1.3",
- "@types/chai-fs": "^2.0.2",
- "@types/mocha": "^8.2.0",
- "@types/node": "^18.0.0",
- "@types/semver": "^7.3.4",
- "chai": "^4.2.0",
- "chai-as-promised": "^7.1.1",
- "chai-fs": "chaijs/chai-fs",
- "electron": "33.3.0",
- "electron-mocha": "^13.0.1",
- "mocha-testdata": "^1.2.0",
- "prettier": "^3.4.2",
- "spec-xunit-file": "0.0.1-3",
- "ts-node": "^9.1.1",
- "typescript": "^5.7.2"
- },
- "dependencies": {
- "unzip-crx-3": "^0.2.0"
- },
- "files": [
- "LICENSE",
- "README.md",
- "dist"
- ]
- }
|