summary refs log tree commit diff
path: root/pkgs/development/tools/yarn2nix-moretea/yarn2nix/package.json
blob: 5b85a68ca5c7d7f5b66a1be04ba6dfbf0cea97ef (plain) (blame)
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
40
41
42
43
44
45
46
47
{
  "name": "yarn2nix",
  "version": "1.0.0",
  "description": "Convert packages.json and yarn.lock into a Nix expression that downloads all the dependencies",
  "main": "index.js",
  "repository": ".",
  "author": "Maarten Hoogendoorn <maarten@moretea.nl>",
  "license": "MIT",
  "scripts": {
    "yarn2nix": "bin/yarn2nix.js",
    "format": "prettier-eslint --write './**/*.{js,jsx,json}'",
    "lint": "eslint ."
  },
  "bin": {
    "yarn2nix": "bin/yarn2nix.js"
  },
  "engines" : {
    "node" : ">=8.0.0"
  },
  "dependencies": {
    "@yarnpkg/lockfile": "^1.1.0",
    "deep-equal": "^1.0.1",
    "docopt": "^0.6.2",
    "ramda": "^0.26.1"
  },
  "devDependencies": {
    "babel-eslint": "^10.0.1",
    "eslint": "^5.11.1",
    "eslint-config-airbnb": "^17.1.0",
    "eslint-config-prettier": "^3.3.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-plugin-import": "^2.14.0",
    "eslint-plugin-jsx-a11y": "^6.1.2",
    "eslint-plugin-node": "^8.0.0",
    "eslint-plugin-promise": "^4.0.1",
    "eslint-plugin-react": "^7.12.2",
    "eslint-plugin-standard": "^4.0.0",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.0",
    "prettier-eslint-cli": "^4.7.1"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  }
}