mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "@electron/asar",
|
|
"description": "Creating Electron app packages",
|
|
"version": "0.0.0-development",
|
|
"main": "./lib/asar.js",
|
|
"types": "./lib/index.d.ts",
|
|
"bin": {
|
|
"asar": "./bin/asar.js"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"lib/index.d.ts"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.12.0"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/electron/asar",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/electron/asar.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/electron/asar/issues"
|
|
},
|
|
"scripts": {
|
|
"mocha": "xvfb-maybe electron-mocha --reporter spec && mocha --reporter spec",
|
|
"test": "npm run lint && npm run mocha",
|
|
"lint": "tsd && standard",
|
|
"standard": "standard",
|
|
"tsd": "tsd"
|
|
},
|
|
"standard": {
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": [
|
|
"BigInt"
|
|
]
|
|
},
|
|
"tsd": {
|
|
"directory": "test"
|
|
},
|
|
"dependencies": {
|
|
"chromium-pickle-js": "^0.2.0",
|
|
"commander": "^5.0.0",
|
|
"glob": "^7.1.6",
|
|
"minimatch": "^3.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@continuous-auth/semantic-release-npm": "^3.0.0",
|
|
"electron": "^22.0.0",
|
|
"electron-mocha": "^11.0.2",
|
|
"lodash": "^4.17.15",
|
|
"mocha": "^10.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"standard": "^14.3.3",
|
|
"tsd": "^0.25.0",
|
|
"xvfb-maybe": "^0.2.1"
|
|
}
|
|
}
|