-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
34 lines (34 loc) · 944 Bytes
/
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
{
"name": "rsocket-js",
"description": "A JavaScript implementation of the RSocket protocol (https://github.com/rsocket/rsocket).",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean && rimraf -rf ./coverage",
"pub": "lerna publish",
"pretest": "yarn clean",
"test": "lerna run test",
"lint": "eslint --ext js,ts .",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "~8.5.0",
"eslint-plugin-import": "~2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.5",
"jest-config": "^27.4.5",
"jest-mock-extended": "^2.0.4",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"sinon": "^12.0.1",
"ts-jest": "^27.1.2",
"typescript": "~4.5.4"
}
}