package.json 778 Bytes
Newer Older
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
{
  "name": "nullthrows",
  "version": "1.1.1",
  "description": "flow typed nullthrows",
  "keywords": [
    "assert",
    "flow",
    "invariant",
    "nullthrows"
  ],
  "license": "MIT",
  "author": "Andres Suarez <zertosh@gmail.com>",
  "files": [
    "nullthrows.d.ts",
    "nullthrows.js",
    "nullthrows.js.flow"
  ],
  "main": "nullthrows.js",
  "types": "nullthrows.d.ts",
  "repository": "https://github.com/zertosh/nullthrows",
  "scripts": {
    "test": "jest"
  },
  "dependencies": {},
  "devDependencies": {
    "@babel/runtime-corejs2": "^7.0.0",
    "flow-bin": "0.87.0",
    "jest": "^23.5.0",
    "typescript": "3.0.3"
  },
  "jest": {
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "/__fixtures__/"
    ],
    "watchman": false
  }
}