-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "@ovotech/castle-stream",
"version": "0.1.8",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A node stream implementation of castle",
"author": "Ivan Kerin <[email protected]>",
"repository": "[email protected]:ovotech/castle.git",
"homepage": "https://github.com/ovotech/castle/tree/main/packages/castle-stream#readme",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"stream-mock": "^2.0.5",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"ts-retry-promise": "^0.6.0",
"typescript": "^4.1.2",
"uuid": "^8.3.1"
},
"scripts": {
"build": "tsc --declaration",
"build:docs": "build-docs README.md",
"test": "jest test --runInBand",
"lint:prettier": "prettier --list-different {src,test}/**/*.ts",
"lint:eslint": "eslint '{src,test}/**/*.ts'",
"lint": "yarn lint:prettier && yarn lint:eslint"
},
"jest": {
"preset": "../../jest.json"
},
"dependencies": {
"@ovotech/castle": "^0.7.0"
}
}