-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.21 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
77
78
79
80
81
82
{
"name": "marblejs-contrib",
"version": "1.0.0",
"description": "A community driven packages for Marble.js",
"scripts": {
"build": "yarn workspaces run build",
"postbuild": "rimraf packages/**/*.spec.js packages/**/*.spec.d.ts packages/**/*.spec.d.ts.map",
"lint": "eslint ./packages/**/src ./packages/**/test --ext .ts",
"pretest": "yarn lint",
"test": "yarn test:unit && yarn test:integration",
"test:unit": "SCOPE=unit ./scripts/run-tests.sh",
"test:watch": "SCOPE=watch ./scripts/run-tests.sh",
"test:integration": "SCOPE=integration ./scripts/run-tests.sh",
"purge": "yarn clean && rimraf node_modules"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/marblejs/contrib.git"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 1.22.0",
"npm": ">= 6.0.0"
},
"keywords": [
"API",
"JavaScript",
"RxJS",
"TypeScript",
"Reactive"
],
"authors": [
"Józef Flakus <jozef.flakus@jflakus.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marblejs/contrib/issues"
},
"homepage": "https://github.com/marblejs/contrib#readme",
"dependencies": {
"rxjs": "^7.1.0",
"fp-ts": "^2.8.2",
"@marblejs/core": "^4.0.0-rc.3",
"@marblejs/http": "^4.0.0-rc.3",
"@marblejs/testing": "^4.0.0-rc.3",
"@marblejs/messaging": "^4.0.0-rc.3",
"@marblejs/middleware-body": "^4.0.0-rc.3"
},
"devDependencies": {
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@types/jest": "^26.0.4",
"@types/node": "^12.7.12",
"@types/rimraf": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-deprecation": "^1.2.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"np": "^7.5.0",
"mock-req": "^0.2.0",
"rimraf": "^3.0.1",
"ts-jest": "^26.3.0",
"typescript": "^4.4.3"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"fp-ts": "^2.8.2",
"io-ts": "^2.2.10"
}
}