-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 991 Bytes
/
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
{
"name": "depined",
"version": "0.2.2",
"files": [
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/erwineverts/depined.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json -w",
"test": "jest --runInBand",
"test:watch": "jest --runInBand --watch-all",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"typescript": ">=5.6"
},
"keywords": [
"di",
"javascript",
"typescript",
"node",
"dependency injection",
"dependency",
"injection"
],
"author": "Erwin Everts",
"license": "MIT",
"bugs": {
"url": "https://github.com/erwineverts/depined/issues"
}
}