-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "lucontainer",
"version": "2.0.0",
"description": "Service Container for Node js",
"author": "Claudio Pennati <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Lupennat/lucontainer.git"
},
"keywords": [
"injection",
"container",
"service",
"ioc",
"di",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control container"
],
"main": "dist/cjs/index.js",
"module": "./dist/esm5/index.js",
"types": "./dist/typings/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm5/index.js",
"types": "./dist/typings/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "safe-publish-latest && npm run build",
"prepublish": "not-in-publish || npm run prepublishOnly",
"build": "npm run clean && npm run build:cjs && npm run build:es5 && npm run build:types",
"build:cjs": "tsc",
"build:es5": "tsc -p ./typescript/tsconfig.esm5.json",
"build:types": "tsc -p ./typescript/tsconfig.types.json",
"clean": "rimraf ./dist",
"test": "npm run lint && jest --config test/jest.config.js",
"test:inspect": "npm run lint && node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --config test/jest.config.js",
"test:coverage": "jest --config test/jest.config.js --coverage",
"lint": "eslint --ext \".js,.jsx,.ts,.tsx\" \"./src\"",
"lint:fix": "eslint --fix --ext \".js,.jsx,.ts,.tsx\" \"./src\""
},
"engines": {
"node": "^14.19.0 || ^16.10.0 || >=18.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"safe-publish-latest": "^2.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"acorn": "^8.8.1",
"tslib": "^2.4.1"
}
}