at 24.11-pre 62 lines 1.3 kB view raw
1{ 2 "name": "@electron/asar", 3 "description": "Creating Electron app packages", 4 "version": "0.0.0-development", 5 "main": "./lib/asar.js", 6 "types": "./lib/index.d.ts", 7 "bin": { 8 "asar": "./bin/asar.js" 9 }, 10 "files": [ 11 "bin", 12 "lib", 13 "lib/index.d.ts" 14 ], 15 "engines": { 16 "node": ">=10.12.0" 17 }, 18 "license": "MIT", 19 "homepage": "https://github.com/electron/asar", 20 "repository": { 21 "type": "git", 22 "url": "https://github.com/electron/asar.git" 23 }, 24 "bugs": { 25 "url": "https://github.com/electron/asar/issues" 26 }, 27 "scripts": { 28 "mocha": "xvfb-maybe electron-mocha --reporter spec && mocha --reporter spec", 29 "test": "npm run lint && npm run mocha", 30 "lint": "tsd && standard", 31 "standard": "standard", 32 "tsd": "tsd" 33 }, 34 "standard": { 35 "env": { 36 "mocha": true 37 }, 38 "globals": [ 39 "BigInt" 40 ] 41 }, 42 "tsd": { 43 "directory": "test" 44 }, 45 "dependencies": { 46 "chromium-pickle-js": "^0.2.0", 47 "commander": "^5.0.0", 48 "glob": "^7.1.6", 49 "minimatch": "^3.0.4" 50 }, 51 "devDependencies": { 52 "@continuous-auth/semantic-release-npm": "^3.0.0", 53 "electron": "^22.0.0", 54 "electron-mocha": "^11.0.2", 55 "lodash": "^4.17.15", 56 "mocha": "^10.1.0", 57 "rimraf": "^3.0.2", 58 "standard": "^14.3.3", 59 "tsd": "^0.25.0", 60 "xvfb-maybe": "^0.2.1" 61 } 62}