-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.62 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
{
"name": "@bimeister/utilities",
"version": "#.#.#",
"license": "Apache-2.0",
"description": "Bimeister utilities library",
"keywords": [
"utilities",
"tools",
"library"
],
"homepage": "https://bimeister.github.io/utilities/",
"repository": {
"type": "git",
"url": "https://github.com/bimeister/utilities"
},
"bugs": {
"url": "https://github.com/bimeister/utilities/issues",
"email": "[email protected]"
},
"scripts": {
"barrel": "npm run barrel --workspaces",
"build": "ts-node ./do-build.ts",
"build:prepublish": "ts-node do-prepublish.ts",
"build:docs": "typedoc --options typedoc.json",
"lint": "eslint --config ./.eslintrc ./packages/**/src/**/*.ts",
"lint:fix": "eslint --config ./.eslintrc ./packages/**/src/**/*.ts --fix",
"test": "jest --clearCache && jest --config ./packages/jest.config.ts --passWithNoTests --coverage true",
"test:ci": "jest --clearCache && jest --config ./packages/jest.config-pipeline.ts --passWithNoTests --coverage true --ci",
"prettier:check": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --check ./**/**/*.{json,js,ts}",
"prettier:format": "prettier --loglevel log --config ./.prettierrc --ignore-path ./.prettierignore --write ./**/**/*.{json,js,ts}",
"autofix": "npm run lint:fix && npm run prettier:format",
"cspell:check": "cspell lint './packages/**/*.*' --config cspell.json"
},
"optionalDependencies": {
"rxjs": "^6.6.0"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"barrelsby": "^2.0.0",
"cspell": "^5.0.0",
"esbuild": "~0.14.0",
"eslint": "latest",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-ban": "^1.6.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^27.0.0",
"jest-junit": "^13.0.0",
"prettier": "^3.2.4",
"ts-jest": "^27.0.0",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typedoc": "^0.22.0",
"typescript": "^4.0.0"
},
"workspaces": [
"packages/build",
"packages/common",
"packages/constants",
"packages/filesystem",
"packages/index",
"packages/interfaces",
"packages/internal",
"packages/intersection-observable",
"packages/performance",
"packages/resize-observable",
"packages/rxjs",
"packages/traits",
"packages/types"
]
}