-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.1 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
{
"name": "aero-di",
"description": "Autowiring Dependency Injection for TypeScript",
"version": "1.2.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adrian Chlubek",
"license": "MIT",
"files": [
"dist/**/*"
],
"bin": {
"aero-di-generate": "dist/cli.js"
},
"repository": "https://github.com/achlubek/aero-di",
"homepage": "https://github.com/achlubek/aero-di",
"bugs": "https://github.com/achlubek/aero-di/issues",
"keywords": [
"autowire",
"di",
"dependency",
"injection",
"typescript"
],
"scripts": {
"lint": "eslint \"{src,test}/**/*.ts\" --max-warnings=0",
"lint:fix": "eslint --fix \"{src,test}/**/*.ts\"",
"prettier": "prettier --check \"**/*.((j|t)s|json|yml|yaml)\" --ignore-path .gitignore",
"prettier:fix": "prettier --write \"**/*.((j|t)s|json|yml|yaml)\" --ignore-path .gitignore",
"style:fix": "yarn prettier:fix && yarn lint:fix",
"test": "mocha --config .mocharc.json",
"test:coverage": "nyc --reporter=html yarn mocha",
"build": "yarn rimraf dist && tsc -P tsconfig.build.json && resolve-tspaths --project tsconfig.build.json",
"start:dev": "ts-node -r tsconfig-paths/register src/cli.ts",
"start:dist": "node dist/cli.js"
},
"dependencies": {
"fast-scan-dir-recursive": "^0.0.4",
"minimatch": "^6.2.0",
"prettier": "2.8.4",
"typescript": "4.*"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.*",
"@trivago/prettier-plugin-sort-imports": "4.*",
"@types/chai": "4.*",
"@types/mocha": "10.*",
"@types/node": "18.14.0",
"@types/prettier": "^2.7.2",
"@types/sinon": "10.*",
"@types/ts-nameof": "^4.2.2",
"@typescript-eslint/eslint-plugin": "5.52.0",
"@typescript-eslint/parser": "5.52.0",
"chai": "4.*",
"cross-env": "7.*",
"eslint": "8.34.0",
"eslint-config-prettier": "8.*",
"eslint-plugin-import": "2.*",
"eslint-plugin-prettier": "4.*",
"mocha": "10.*",
"nyc": "15.*",
"resolve-tspaths": "0.*",
"rimraf": "4.*",
"sinon": "15.*",
"ts-node": "10.*",
"tsconfig-paths": "4.*"
}
}