-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.07 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
75
76
77
78
{
"name": "@autodep/container",
"version": "1.0.0",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "An opinionated Inversion of Control container for Typescript",
"keywords": [
"typescript",
"ioc",
"dependency injection"
],
"homepage": "https://github.com/laurence79/autodep#readme",
"bugs": {
"url": "https://github.com/laurence79/autodep/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laurence79/autodep.git"
},
"license": "ISC",
"author": "Laurence Hartgill",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"files": [
"dist/"
],
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rimraf dist",
"lint": "eslint --cache 'src/**/*.ts' --quiet",
"test": "jest",
"tsc:watch": "tsc -p . --noEmit --watch"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest-circus": "^29.4.3",
"prettier": "^3.0.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^3.0.2",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.1.0",
"typescript": "^5.2.0"
},
"peerDependencies": {
"reflect-metadata": "^0.2.2",
"tslib": "^2.1.0"
},
"engines": {
"node": ">=16"
}
}