-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
116 lines (116 loc) · 2.63 KB
/
package.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mobx-task",
"version": "0.0.0-development",
"description": "Removes boilerplate of tracking when an async function is running for MobX.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"cover": "jest --coverage",
"semantic-release": "semantic-release"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/jeffijoe/mobx-task.git"
},
"keywords": [
"async",
"mobx",
"state",
"loading",
"promise"
],
"author": "Jeff Hansen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffijoe/tsmodule/issues"
},
"homepage": "https://github.com/jeffijoe/tsmodule#readme",
"devDependencies": {
"@semantic-release/condition-codeship": "^1.1.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"autobind-decorator": "^2.4.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"lodash": "^4.17.21",
"mobx": "^6.10.2",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.5",
"smid": "^0.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": [
"tslint --fix --project tsconfig.json",
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/__tests__/.*\\.(test|spec))\\.ts$",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"modulePaths": [
"src"
],
"coverageDirectory": "<rootDir>/coverage",
"transform": {
"\\.(ts|tsx)": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"typesync": {
"ignorePackages": [
"@babel/preset-env",
"@babel/core",
"@babel/plugin-transform-runtime",
"prettier",
"rimraf",
"istanbul",
"semantic-release"
]
}
}