This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
139 lines (139 loc) · 3.56 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "tsdi",
"version": "0.25.0",
"description": "Dependency Injection container (IoC) for TypeScript",
"source": "lib/index.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"postinstall": "husky install",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"linter": "tslint --project ./tsconfig.json",
"linter:integration": "tslint --project ./lib/__integration__/tsconfig.json",
"clean": "rimraf .nyc_output coverage dist website/build",
"prebuild": "yarn clean",
"build": "microbundle build",
"build:watch": "microbundle watch & tsc --project ./lib/__tests__/tsconfig.json --watch & tsc --project ./lib/__integration__/tsconfig.json --watch",
"pretest": "yarn build && tsc -p ./lib/__tests__",
"test": "yarn test:no-build",
"test:no-build": "nyc mocha --enable-source-maps --check-leaks --inline-diffs dist/__tests__",
"coverage": "codecov",
"integration": "tsc --project ./lib/__integration__/tsconfig.json",
"precypress:run": "yarn build && yarn integration",
"cypress:run": "node ./dist/__integration__/cypress run $@",
"precypress:open": "yarn integration",
"cypress:open": "node ./dist/__integration__/cypress open",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger"
},
"author": {
"name": "Markus Wolf",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "KnisterPeter/tsdi"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@knisterpeter/standard-tslint": "1.7.2",
"@types/chai": "4.3.10",
"@types/debug": "4.1.11",
"@types/mocha": "9.1.1",
"@types/node": "20.9.0",
"@types/shelljs": "0.8.15",
"chai": "4.3.10",
"codecov": "3.8.3",
"cypress": "9.7.0",
"fkill": "7.2.1",
"get-port": "5.1.1",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"microbundle": "0.15.1",
"mocha": "9.2.2",
"nyc": "15.1.0",
"pinst": "^3.0.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"shelljs": "0.8.5",
"shipjs": "0.26.3",
"tslint": "6.1.3",
"typescript": "4.7.4",
"wait-on": "7.1.0"
},
"dependencies": {
"reflect-metadata": "0.1.13"
},
"prettier": {
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --list-different"
],
"lib/!(__integration__)/*.{ts,tsx}": [
"yarn linter"
],
"lib/__integration__/**/*.{ts,tsx}": [
"yarn linter:integration"
]
},
"nyc": {
"reporter": [
"text",
"lcovonly"
],
"extends": "@istanbuljs/nyc-config-typescript",
"#fixme": "https://github.com/istanbuljs/istanbuljs/issues/413",
"#all": true,
"exclude": [
"wallaby.js",
"website/",
"lib/__integration__/"
]
},
"renovate": {
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"automerge": true
}
]
}
}