-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
77 lines (77 loc) · 1.95 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
{
"name": "@owja/ioc",
"version": "2.0.0-alpha.8",
"description": "dependency injection for javascript",
"main": "dist/ioc.js",
"module": "dist/ioc.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/ioc.mjs",
"import": "./dist/ioc.mjs",
"require": "./dist/ioc.js"
},
"./package.json": "./package.json"
},
"keywords": [
"typescript",
"dependency injection",
"dependency inversion",
"inversion of control",
"ioc",
"di"
],
"scripts": {
"prepack": "npm run build",
"prebuild": "npm run clean",
"build": "microbundle --format es,cjs",
"clean": "shx rm -rf dist && shx rm -f owja-ioc-*.tgz && shx rm -rf coverage",
"test": "jest",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier": "prettier src/**/*.ts *.js *.mjs --check",
"prettier:fix": "prettier src/**/*.ts *.js *.mjs --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owja/ioc.git"
},
"bugs": {
"url": "https://github.com/owja/ioc/issues"
},
"homepage": "https://github.com/owja/ioc",
"author": "Hauke Broer <info@owja.de>",
"license": "MIT",
"devDependencies": {
"@owja/browserslist-config": "^1.0.1",
"@owja/prettier-config": "^1.0.2",
"@owja/typescript-config": "^1.0.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.2",
"jest": "^29.7.0",
"microbundle": "^0.15.0",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"typescript-eslint": "^8.4.0"
},
"mangle": {
"regex": "^_"
},
"files": [
"/dist",
"!/dist/example",
"/src",
"!/src/example",
"!/**/*.test.ts",
"!/**/*.test.d.ts"
],
"browserslist": [
"extends @owja/browserslist-config"
],
"prettier": "@owja/prettier-config"
}