-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.35 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.35 KB
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
{
"name": "first-di",
"version": "3.4.13",
"author": "Eugene Labutin",
"license": "MIT",
"homepage": "https://github.com/LabEG/first-di#readme",
"description": "Easy dependency injection for typescript applications",
"main": "./dist/index.js",
"type": "module",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md"
],
"repository": {
"type": "git",
"url": " git@github.com:LabEG/first-di.git"
},
"bugs": {
"url": "https://github.com/LabEG/first-di/issues"
},
"lint-staged": {
"./tests/**/*.(ts|tsx|js|jsx)": [
"eslint --fix"
]
},
"scripts": {
"lint": "eslint --fix ./src/ ./tests/",
"test": "node --import ./register-ts-node.js --test --test-reporter=spec --test-reporter-destination=stdout \"tests/**/*.spec.ts\"",
"test-watch": "node --watch --import ./register-ts-node.js --test --test-reporter=spec --test-reporter-destination=stdout \"tests/**/*.spec.ts\"",
"coverage": "node --import ./register-ts-node.js --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info \"tests/**/*.spec.ts\"",
"build": "rm -rf dist/ && tsc --project tsconfig.build.json && node ./dist/index.js",
"release": "cliff-jumper --name 'first-di' --package-path '.' --no-skip-changelog --no-skip-tag",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"upgrade": "ncu -u && rimraf -v node_modules package-lock.json && npm install",
"prepare": "husky"
},
"peerDependencies": {
"reflect-metadata": ">=0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@favware/cliff-jumper": "^6.0.0",
"@labeg/code-style": "^6.10.19",
"@swc/core": "^1.15.11",
"@types/chai": "^5.2.3",
"chai": "^6.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"npm-check-updates": "^19.4.1",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [
"dependency injection",
"di",
"ioc"
]
}