-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "@guarapi/di-container",
"version": "0.1.4",
"author": "João Neto",
"license": "MIT",
"description": "Dependency injection container",
"keywords": [
"guarapi",
"di",
"ioc"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@guarapi/eslint-config-guarapi/prettierrc.js",
"homepage": "https://github.com/guarapi/guarapi-di-container#readme",
"repository": "github:guarapi/guarapi-di-container",
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "pnpm run clean && swc src -d dist --strip-leading-paths && pnpm run types",
"types": "tsc --noEmit false --declaration --emitDeclarationOnly",
"lint": "eslint ./src",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@guarapi/eslint-config-guarapi": "^0.1.2",
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18"
}
}