-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2 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
{
"name": "standard-assets-bundle",
"displayName": "Standard Assets Bundle",
"version": "1.3.0",
"private": true,
"description": "Teraslice standard processor asset bundle",
"type": "module",
"workspaces": [
"packages/*",
"asset"
],
"scripts": {
"asset:build": "yarn && yarn run build",
"asset:post-build": "./scripts/copy-links.sh",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"bump": "ts-scripts bump",
"bump-asset": "ts-scripts bump-asset",
"docker:limit": "./scripts/docker-limit-check.sh",
"docker:listImages": "ts-scripts images list",
"docker:saveImages": "ts-scripts images save",
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"publish:changed": "./scripts/publish.sh",
"setup": "yarn && yarn build --force",
"test": "ts-scripts test asset --",
"test:all": "ts-scripts test",
"test:debug": "ts-scripts test --debug asset --",
"test:watch": "ts-scripts test --watch asset --"
},
"devDependencies": {
"@terascope/eslint-config": "~1.1.3",
"@terascope/job-components": "~1.7.0",
"@terascope/scripts": "~1.6.0",
"@terascope/standard-asset-apis": "~1.0.3",
"@types/express": "~4.17.19",
"@types/jest": "~29.5.14",
"@types/json2csv": "~5.0.7",
"@types/node": "~22.10.2",
"@types/node-gzip": "~1.1.0",
"@types/timsort": "~0.3.0",
"eslint": "~9.17.0",
"jest": "~29.7.0",
"jest-extended": "~4.0.2",
"node-notifier": "~10.0.1",
"teraslice-test-harness": "~1.2.1",
"ts-jest": "~29.2.5",
"tslib": "~2.8.1",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.19"
},
"terascope": {
"root": true,
"testSuite": "unit",
"tests": {
"suites": {
"unit": []
}
}
}
}