-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@plopezm/tsinject",
"version": "1.2.6",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"clean": "rm -fr dist",
"compile": "node node_modules/typescript/bin/tsc",
"format": "node node_modules/typescript-formatter/bin/tsfmt -r",
"lint": "node node_modules/tslint/bin/tslint ./src/**/*.ts",
"validate": "npm run format && npm run lint",
"build": "npm run clean && npm run validate && npm run compile"
},
"keywords": [
"DI",
"cross-cutting concern",
"interceptor",
"injection"
],
"author": "Pablo LM <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/plopezm/tsinject"
},
"license": "MIT",
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/mocha": "^2.2.46",
"@types/node": "^8.5.7",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"typescript-formatter": "^7.1.0"
}
}