-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.35 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
{
"name": "super-injector",
"description": "Simple DI for Typescript applications",
"version": "1.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"nyc": {
"include": [
"**/*.ts"
],
"exclude": [
"**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"sourceMap": true,
"instrument": true
},
"scripts": {
"fix": "tslint --fix --project ./tsconfig.json",
"build": "npm test && tsc",
"stop": "killall -KILL node",
"test": "nyc mocha"
},
"bugs": {
"url": "https://github.com/codyjdalton/super-injector/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codyjdalton/super-injector.git"
}
}