-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.82 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
{
"name": "@spearwolf/signalize",
"version": "0.18.1",
"description": "signals and effects for all",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./decorators": {
"import": "./lib/decorators.js",
"types": "./lib/decorators.d.ts"
}
},
"engines": {
"node": ">=20.12"
},
"scripts": {
"update": "npx npm-check --update",
"docs:gists": "node scripts/createGistImages.cjs",
"publish:pkg": "node scripts/publishPackage.cjs",
"checkPkgTypes": "attw --pack",
"compile": "tsc --project tsconfig.lib.json",
"clean": "rimraf build types tests dist lib",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"src/**/*.{ts,tsx,js,jsx}\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"fix": "run-s -snl lint:fix prettier:write",
"jest:debug": "cross-env NODE_ENV=test node --nolazy --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --colors --verbose",
"test": "cross-env NODE_ENV=test jest",
"cbt": "run-s -sn clean compile test",
"dist": "run-s -sn clean compile",
"world": "run-s -sn clean lint prettier:check compile test"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@babel/core": "^7.24.9",
"@babel/preset-typescript": "^7.24.7",
"@spearwolf/eventize": "^4.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"core-js": "^3.37.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-problems": "^8.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"exec-sh": "^0.4.0",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.19.0",
"sinon": "^18.0.0",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@spearwolf/eventize": "^4.0.1"
},
"homepage": "https://github.com/spearwolf/signalize/",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spearwolf/signalize.git"
},
"bugs": {
"url": "https://github.com/spearwolf/signalize/issues"
},
"author": {
"name": "Wolfger Schramm",
"email": "[email protected]",
"url": "https://www.spearwolf.de"
}
}