-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
84 lines (84 loc) · 2.92 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
{
"name": "marblejs",
"version": "4.0.0",
"description": "Reactive Node APIs made easy",
"scripts": {
"build": "lerna run build",
"postbuild": "rimraf packages/**/*.spec.js packages/**/*.spec.d.ts packages/**/*.spec.d.ts.map",
"benchmark": "NODE_ENV=test make -C benchmarks",
"watch": "lerna run --parallel --stream watch",
"lint": "eslint ./packages/**/src ./packages/**/test --ext .ts",
"pretest": "yarn lint",
"link:all": "lerna exec -- yarn link",
"unlink:all": "lerna exec -- yarn unlink",
"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",
"clean": "lerna run clean && rimraf packages/*/tsconfig.tsbuildinfo",
"purge": "yarn clean && rimraf node_modules",
"prepare": "husky install",
"prepublishOnly": "yarn clean && yarn build && yarn test",
"publish": "lerna publish --no-push --force-publish=*",
"publish:canary:patch": "lerna publish --no-push --dist-tag dev --canary patch --preid dev --force-publish=* --ignore-scripts",
"publish:canary:minor": "lerna publish --no-push --dist-tag dev --canary minor --preid dev --force-publish=* --ignore-scripts",
"publish:canary:major": "lerna publish --no-push --dist-tag next --canary major --preid next --force-publish=* --ignore-scripts",
"publish:canary:major:github": "lerna publish --dist-tag next --canary major --preid next --yes --force-publish=* --no-verify-access --no-git-reset --ignore-scripts",
"publish:rc": "lerna publish --no-push --dist-tag rc --force-publish=* --ignore-scripts"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/marblejs/marble.git"
},
"engines": {
"node": ">= 8.0.0",
"yarn": ">= 1.7.0",
"npm": ">= 5.0.0"
},
"keywords": [
"API",
"JavaScript",
"RxJS",
"TypeScript",
"Reactive"
],
"authors": [
"Józef Flakus <jozef.flakus@jflakus.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/marblejs/marble/issues"
},
"homepage": "https://github.com/marblejs/marble#readme",
"dependencies": {
"rxjs": "^7.5.7",
"fp-ts": "^2.13.1"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^12.7.12",
"@types/rimraf": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-deprecation": "^1.2.1",
"husky": "^7.0.2",
"jest": "^27.2.1",
"lerna": "^4.0.0",
"mock-req": "^0.2.0",
"rimraf": "^3.0.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"fp-ts": "^2.13.1",
"io-ts": "^2.2.19"
}
}