1 | {
|
2 | "name": "flow-typed",
|
3 | "description": "A repository of high quality flow type definitions",
|
4 | "license": "MIT",
|
5 | "homepage": "https://flow-typed.github.io/flow-typed",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "git+https://github.com/flow-typed/flow-typed.git"
|
9 | },
|
10 | "bugs": {
|
11 | "url": "https://github.com/flow-typed/flow-typed/issues/new/choose"
|
12 | },
|
13 | "version": "4.0.0",
|
14 | "main": "dist/cli.js",
|
15 | "bin": "dist/cli.js",
|
16 | "packageManager": "yarn@1.22.19",
|
17 | "engines": {
|
18 | "node": ">=10.0.0"
|
19 | },
|
20 | "scripts": {
|
21 | "build:flow": "flow-copy-source --ignore '**/__tests__/**' src dist",
|
22 | "build:src": "babel ./src --out-dir=./dist",
|
23 | "build": "mkdirp dist && yarn build:src && yarn build:flow",
|
24 | "build:watch": "yarn build:src --watch",
|
25 | "clean": "rimraf dist",
|
26 | "flow": "flow",
|
27 | "lint": "eslint .",
|
28 | "prepare": "mkdirp dist && yarn test",
|
29 | "prepublishOnly": "cp ../README.md .",
|
30 | "test": "yarn clean && yarn build && yarn test-quick",
|
31 | "test-quick": "jest && yarn lint && yarn flow",
|
32 | "test:watch": "yarn clean && yarn build && yarn jest --watch",
|
33 | "watch": "mkdirp dist && babel --source-maps --watch=./src --out-dir=./dist"
|
34 | },
|
35 | "dependencies": {
|
36 | "@octokit/rest": "^18.12.0",
|
37 | "colors": "1.4.0",
|
38 | "flowgen": "^1.10.0",
|
39 | "fs-extra": "^8.1.0",
|
40 | "glob": "^7.1.6",
|
41 | "got": "^11.8.5",
|
42 | "js-yaml": "^4.1.0",
|
43 | "md5": "^2.2.1",
|
44 | "mkdirp": "^1.0.3",
|
45 | "node-stream-zip": "^1.15.0",
|
46 | "prettier": "^1.19.1",
|
47 | "rimraf": "^3.0.2",
|
48 | "semver": "^7.5.4",
|
49 | "simple-git": "^3.10.0",
|
50 | "table": "^6.7.3",
|
51 | "which": "^2.0.2",
|
52 | "yargs": "^15.1.0"
|
53 | },
|
54 | "devDependencies": {
|
55 | "@babel/cli": "^7.16.0",
|
56 | "@babel/core": "^7.16.0",
|
57 | "@babel/eslint-parser": "^7.16.3",
|
58 | "@babel/plugin-syntax-flow": "^7.16.0",
|
59 | "@babel/plugin-transform-react-jsx": "^7.16.0",
|
60 | "@babel/preset-env": "^7.16.4",
|
61 | "@babel/preset-flow": "^7.16.0",
|
62 | "eslint": "^8.3.0",
|
63 | "eslint-config-prettier": "^8.3.0",
|
64 | "eslint-plugin-fb-flow": "^0.0.4",
|
65 | "eslint-plugin-flowtype": "^8.0.3",
|
66 | "eslint-plugin-prettier": "^4.0.0",
|
67 | "flow-bin": "0.200.0",
|
68 | "flow-copy-source": "^2.0.9",
|
69 | "jest": "^29.7.0"
|
70 | },
|
71 | "keywords": [
|
72 | "flow",
|
73 | "flowtype"
|
74 | ],
|
75 | "jest": {
|
76 | "modulePathIgnorePatterns": [
|
77 | "<rootDir>/dist/.*",
|
78 | "<rootDir>/node_modules/.*"
|
79 | ],
|
80 | "testPathIgnorePatterns": [
|
81 | "<rootDir>/.*/__[^/]*-fixtures__/.*"
|
82 | ]
|
83 | }
|
84 | }
|