-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "@dapr/testcontainer-node",
"version": "0.5.2",
"description": "Dapr TestContainer for NodeJS",
"keywords": [],
"license": "Apache-2.0",
"author": "Dapr Authors",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dapr/testcontainer-node.git"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepack": "npm run build",
"pretty": "prettier --list-different \"**/*.{ts,js,json,md}\"",
"pretty-fix": "prettier --write package.json \"**/*.{ts,js,json,md}\"",
"test": "jest"
},
"dependencies": {
"testcontainers": "^11.11.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@dapr/dapr": "^3.6.1",
"@types/body-parser": "^1.19.6",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"body-parser": "^2.2.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.5.4",
"express": "^5.1.0",
"prettier": "^3.7.4",
"ts-jest": "^29.4.1",
"typescript": "^5.9.3"
}
}