-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "@toreda/lifecycle",
"version": "1.4.0",
"description": "Lifecycle flows with callbacks and event handlers similar to Android, Objective C, Swift.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": "https://github.com/toreda/lifecycle",
"author": "Toreda, Inc.",
"license": "MIT",
"private": false,
"public": true,
"sideEffects": false,
"devDependencies": {
"@babel/traverse": "^7.24.7",
"@swc/core": "^1.6.5",
"@swc/helpers": "^0.5.11",
"@swc/jest": "^0.2.36",
"@toreda/build-tools": "^0.8.0",
"@toreda/eslint-config": "^2.2.0",
"@toreda/log": "^0.6.16",
"@toreda/prettier-config": "^1.0.1",
"@toreda/types": "^2.16.0",
"@types/eslint": "^8.56.10",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.34",
"@typescript-eslint/parser": "^8.0.0-alpha.34",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.3.2",
"typedoc": "^0.26.2",
"typescript": "^5.5.2"
},
"resolutions": {
"chokidar": "^3.0.0",
"postcss": "^8.4.31",
"glob-parent": "^5.1.2",
"@babel/traverse": "^7.24.7",
"word-wrap": "^1.2.4",
"semver": "^7.5.2"
},
"keywords": [
"component-lifecycle",
"lifecycle-hooks"
],
"peerDependencies": {
"@toreda/log": "^0.6.16",
"@toreda/types": "^2.16.0"
},
"scripts": {
"build": "yarn build:prod",
"build:prod": "yarn gulp --prod",
"build:dev": "yarn gulp --dev",
"test": "yarn jest --coverage --maxWorkers=50%",
"test:dev": "yarn jest --coverage=false --maxWorkers=25% --verbose=false",
"make:docs": "yarn typedoc docs --categorizeByGroup false --entryPoints ./src/index.ts --entryPointStrategy resolve",
"make:depgraph": "yarn madge src/index.ts --image dependency-graph.png"
},
"prettier": "@toreda/prettier-config"
}