-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "ts-nest",
"description": "NodeJS dependency injection inspired by Angular",
"version": "0.0.9",
"author": "Felix Lemke <[email protected]> (https://felixlemke.com)",
"bugs": {
"url": "https://github.com/ngfelixl/ts-nest/issues"
},
"homepage": "https://github.com/ngfelixl/ts-nest#readme",
"keywords": [
"nodejs",
"typescript",
"dependencyinjection",
"hierarchical",
"object-orientation"
],
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ngfelixl/ts-nest.git"
},
"scripts": {
"test": "jest --config jestconfig.json --coverage",
"build": "tsc -p src/tsconfig.json && npm run uglify",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"coverage": "cat coverage/lcov.info | coveralls",
"uglify": "uglifyjs dist/index.js --mangle --compress -o dist/index.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/jest": "^23.3.13",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"prettier": "^1.16.1",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4",
"uglify-es": "^3.3.9"
},
"dependencies": {
"inversify": "^4.13.0",
"reflect-metadata": "^0.1.12"
}
}