-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "@nestjs-packages/datadog",
"version": "0.0.0",
"description": "Nest - modern, fast, powerful node.js web framework (@datadog)",
"main": "dist/index.js",
"author": "Sumin Choi <[email protected]> (https://sumini.dev)",
"license": "MIT",
"homepage": "https://github.com/nestjs-packages/datadog#readme",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch",
"release": "release-it"
},
"bugs": {
"url": "https://github.com/nestjs-packages/datadog/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nestjs-packages/datadog.git"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@nestjs/common": "8.4.7",
"@nestjs/core": "8.4.7",
"@types/jest": "27.5.2",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.6",
"jest": "27.5.1",
"prettier": "3.3.3",
"reflect-metadata": "0.1.14",
"release-it": "17.10.0",
"rimraf": "3.0.2",
"rxjs": "7.8.1",
"ts-jest": "27.1.5",
"typescript": "4.9.5"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}