-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 936 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
35
{
"name": "@sofie-package-manager/expectation-manager",
"version": "1.51.0-alpha.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "yarn rimraf dist && yarn build:main",
"build:main": "tsc -p tsconfig.json",
"test": "jest"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"jest": "*",
"rimraf": "^5.0.5",
"type-fest": "3.13.1"
},
"dependencies": {
"@sofie-package-manager/api": "1.51.0-alpha.2",
"@sofie-package-manager/worker": "1.51.0-alpha.2",
"@supercharge/promise-pool": "^3.2.0",
"underscore": "^1.12.0"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
}
}