forked from rsocket/rsocket-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.3 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
93
94
95
96
97
98
99
100
{
"name": "rsocket-js",
"private": true,
"description": "An implementation of the RSocket protocol: https://github.com/rsocket/rsocket",
"version": "0.0.23",
"keywords": [
"reactivesocket",
"rsocket"
],
"license": "BSD-3-Clause",
"files": [
"LICENSE",
"PATENTS",
"README.md",
"dist/",
"lib/"
],
"scripts": {
"build": "cross-env NODE_ENV=production node ./scripts/build.js",
"jest": "cross-env NODE_ENV=test jest \"$@\"",
"lint": "yarn run lint-prettier && eslint . --cache",
"lint-prettier": "node ./scripts/prettier.js lint",
"prettier": "node ./scripts/prettier.js write && eslint . --cache --fix",
"tck": "yarn run build && node ./packages/rsocket-tck/build/index.js \"$@\"",
"simple-cli": "yarn run build && node ./packages/rsocket-examples/build/SimpleCli.js \"$@\"",
"resume-example": "yarn run build && node ./packages/rsocket-examples/build/ResumeExample.js",
"lease-client-example": "yarn run build && node ./packages/rsocket-examples/build/LeaseClientExample.js \"$@\"",
"test": "f() { EXIT=0; yarn run typecheck || EXIT=$?; yarn run jest \"$@\" || EXIT=$?; exit $EXIT; }; f",
"typecheck": "flow check ./packages/"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"babel-jest": "^26.6.3",
"babel-eslint": "^10.1.0",
"babel-plugin-minify-replace": "^0.5.0",
"@babel/plugin-transform-async-to-generator": "^7.13.0",
"@babel/plugin-proposal-async-generator-functions": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/plugin-transform-flow-strip-types": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.9",
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.13.9",
"babel-preset-fbjs": "^3.3.0",
"chalk": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-fb-strict": "^26.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-flowtype": "^5.3.1",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-relay": "^1.8.2",
"eslint-plugin-jest": "^24.1.5",
"fbjs": "^3.0.0",
"fbjs-scripts": "^3.0.0",
"flow-bin": "^0.139.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"object-assign": "^4.1.1",
"prettier": "2.2.1",
"rollup": "^2.40.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"ws": "^7.4.3"
},
"devEngines": {
"node": ">=4.x"
},
"jest": {
"rootDir": "",
"roots": [
"<rootDir>/packages/"
],
"setupFiles": [
"<rootDir>/node_modules/fbjs-scripts/jest/environment.js",
"<rootDir>/scripts/jest/environment.js"
],
"transform": {
".*": "<rootDir>/scripts/jest/preprocessor.js"
},
"transformIgnorePatterns": [
"<rootDir>/packages/.*/node_modules/"
],
"automock": false,
"modulePathIgnorePatterns": [
"<rootDir>/packages/.*/build/haste/",
"<rootDir>/node_modules/(?!(fbjs/lib/|fbjs-scripts/jest))"
]
}
}