-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "@xprofiler/injection",
"version": "0.1.0",
"description": "an ioc implemention for xprofiler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"tsc": "rm -rf dist && tsc -p ./tsconfig.json",
"build": "rm -rf dist && tsc -p ./tsconfig.build.json",
"test": "jest --coverage --config ./jest.config.js --detectOpenHandles",
"codecov": "codecov || echo 'warning: ignoring codecov failure'",
"ci": "npm run lint && npm run test && npm run codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/X-Profiler/injection.git"
},
"keywords": [
"xprofiler"
],
"author": "hyj1991 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/X-Profiler/injection/issues"
},
"homepage": "https://github.com/X-Profiler/injection#readme",
"devDependencies": {
"@artus/eslint-config-artus": "^0.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"codecov": "^3.8.3",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.4.3",
"mermaid.cli": "^0.5.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}