nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 48 lines 1.3 kB view raw
1{ 2 "name": "yarn2nix", 3 "version": "1.0.0", 4 "description": "Convert packages.json and yarn.lock into a Nix expression that downloads all the dependencies", 5 "main": "index.js", 6 "repository": ".", 7 "author": "Maarten Hoogendoorn <maarten@moretea.nl>", 8 "license": "MIT", 9 "scripts": { 10 "yarn2nix": "bin/yarn2nix.js", 11 "format": "prettier-eslint --write './**/*.{js,jsx,json}'", 12 "lint": "eslint ." 13 }, 14 "bin": { 15 "yarn2nix": "bin/yarn2nix.js" 16 }, 17 "engines": { 18 "node": ">=8.0.0" 19 }, 20 "dependencies": { 21 "@yarnpkg/lockfile": "^1.1.0", 22 "deep-equal": "^1.0.1", 23 "docopt": "^0.6.2", 24 "ramda": "^0.26.1", 25 "ssri": "^10.0.0" 26 }, 27 "devDependencies": { 28 "babel-eslint": "^10.0.1", 29 "eslint": "^5.11.1", 30 "eslint-config-airbnb": "^17.1.0", 31 "eslint-config-prettier": "^3.3.0", 32 "eslint-config-standard": "^12.0.0", 33 "eslint-plugin-import": "^2.14.0", 34 "eslint-plugin-jsx-a11y": "^6.1.2", 35 "eslint-plugin-node": "^8.0.0", 36 "eslint-plugin-promise": "^4.0.1", 37 "eslint-plugin-react": "^7.12.2", 38 "eslint-plugin-standard": "^4.0.0", 39 "husky": "^1.3.1", 40 "lint-staged": "^8.1.0", 41 "prettier-eslint-cli": "^4.7.1" 42 }, 43 "husky": { 44 "hooks": { 45 "pre-commit": "lint-staged" 46 } 47 } 48}