This repository was archived by the owner on Feb 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 1.81 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
{
"name": "inversify-oclif-utils",
"description": "Create oclif commands with inversify",
"version": "0.1.1",
"author": "Marvin Rabe",
"repository": {
"type": "git",
"url": "https://github.com/marvinrabe/inversify-oclif-utils.git"
},
"bugs": {
"url": "https://github.com/marvinrabe/inversify-oclif-utils/issues"
},
"homepage": "https://github.com/marvinrabe/inversify-oclif-utils",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"inversify": "^5",
"reflect-metadata": "^0.1",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@types/expect": "^1.20.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"chai": "^4",
"expect": "^23.6.0",
"mocha": "^5",
"nyc": "^13",
"ts-node": "^7",
"tslint": "^5",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/yarn.lock"
],
"keywords": [
"oclif-plugin",
"inversify",
"typescript"
],
"license": "MIT",
"oclif": {
"devPlugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./lib/init.ts"
}
},
"scripts": {
"build": "rm -rf lib && tsc -b && oclif-dev manifest",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"postpack": "rm -f oclif.manifest.json",
"test": "nyc mocha",
"lint": "tslint -p test -t stylish"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json"
],
"sourceMap": true,
"instrument": true
}
}