-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.51 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
{
"name": "njct",
"version": "0.0.0-dev",
"description": "Inject a dependency",
"keywords": [
"injector",
"inject",
"dependency",
"dependency-injection",
"service-locator"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"bugs": {
"url": "https://github.com/unlight/inject/issues"
},
"homepage": "https://github.com/unlight/inject#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/inject.git"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"mocha": "node -r ts-node/register node_modules/mocha/bin/mocha",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "npm run mocha -- src/**/*.spec.ts",
"test:cov": "c8 --reporter text --exclude \"**/*.spec.ts\" --exclude \"**/testing/**\" npm run test:r -- --no-timeouts",
"test:w": "npm run test:r -- --watch-files src --watch",
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts --watch-extensions ts --watch src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"build": "sh Taskfile build_pkgroll",
"commit": "git-cz"
},
"dependencies": {
"@zodash/once": "^0.1.6",
"node-is-class": "^1.0.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.4",
"@typescript-eslint/parser": "^5.32.0",
"c8": "^7.12.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-unicorn": "^43.0.2",
"expect": "^28.1.3",
"mocha": "^10.0.0",
"semantic-release": "^19.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}