-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "@cubos/inject",
"version": "0.0.0",
"description": "Service injection library agnostic of framework and inspired by ASP.NET",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"eslint:fix": "eslint --fix '{src,spec}/**/*.ts'",
"eslint:check": "eslint '{src,spec}/**/*.ts'",
"build": "tsc && cp src/use.d.ts dist/src/"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cubos/node-inject.git"
},
"bugs": {
"url": "https://github.com/cubos/node-inject/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/cubos/node-inject#readme",
"devDependencies": {
"@cubos/eslint-config": "^1.0.612619",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
},
"jest": {
"preset": "ts-jest",
"modulePaths": [
"<rootDir>/src/"
],
"testEnvironment": "node",
"testMatch": [
"**/spec/**/*.ts"
],
"verbose": true,
"testTimeout": 60000,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"setupFilesAfterEnv": [
"jest-extended"
]
}
}