-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.72 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "to-flow-generator-function",
"version": "1.0.0",
"license": "MIT",
"description": "An utility function that makes MobX flow type-safe",
"keywords": [
"typescript",
"mobx",
"flow",
"generators",
"promise"
],
"main": "build/index.js",
"files": [
"build"
],
"homepage": "https://github.com/harunou/to-flow-generator-function",
"bugs": {
"url": "https://github.com/harunou/to-flow-generator-function/issues"
},
"repository": "git@github.com:harunou/to-flow-generator-function.git",
"author": "Dzmitry Harunou <dev.harunou@gmail.com>",
"scripts": {
"test": "run-s -ln lint:all jest:all",
"build": "rm -rf ./build && tsc --build ./src ",
"jest:base": "jest --watchAll=false",
"jest:watch": "npm run jest:base -- --watchAll=true",
"jest:all": "npm run jest:base -- --watchAll=false --silent=true --coverage",
"lint:all": "run-p -ln eslint:all type-check-js:all type-check-ts:all",
"eslint:base": "eslint --format=codeframe --max-warnings=0 --ext=ts,tsx",
"eslint:all": "npm run eslint:base -- './src'",
"type-check-js:base": "tsc --skipLibCheck --checkJs --noEmit --resolveJsonModule",
"type-check-js:all": "npm run type-check-js:base -- ./*.js ./.*.js",
"type-check-ts:all": "tsc --project ./tsconfig.json",
"git:hooks:install": "husky install",
"git:hooks:commit": "run-s -ln prettier:format:staged",
"git:hooks:push": "run-s test",
"prettier:format:staged": "bash ./scripts/prettier/prettify-staged.sh",
"packages:upgrade": "ncu --interactive --upgrade",
"pathname:bash": "echo 'Bash pathname is'; command -v bash",
"prepare": "run-s git:hooks:install 'pathname:bash --silent'"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.21.5",
"@tsconfig/recommended": "1.0.2",
"@tsconfig/strictest": "2.0.1",
"@types/babel__core": "7.20.0",
"@types/jest": "29.5.1",
"@types/node": "20.1.4",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"babel-jest": "29.5.0",
"core-js": "3.30.2",
"eslint": "8.40.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-testing-library": "5.11.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-watch-typeahead": "2.2.2",
"mobx": "6.9.0",
"npm-check-updates": "16.10.12",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"regenerator-runtime": "0.13.11",
"test-http-client": "0.1.3",
"tsd": "0.28.1",
"typescript": "5.0.4",
"whatwg-fetch": "3.6.2"
}
}