-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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
{
"name": "typescript-simple-di",
"version": "1.1.4",
"description": "A lean and simple Dependency Injection library for TypeScript",
"author": "Thomas Klaner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kl4n4/typescript-simple-di"
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"lint": "tslint -c tslint.json verbose \"src/**/*.ts\"",
"build": "npm run lint && echo Using TypeScript && tsc --version && tsc --pretty -p .",
"test": "jasmine --config=jasmine.json",
"test:coverage": "nyc --include=\"src/**/*.ts\" --reporter=text --reporter=html --reporter=lcov jasmine --config=jasmine.json",
"watch": "npm run build -- --watch"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/jasmine": "^2.5.53",
"@types/node": "^7.0.0",
"jasmine": "^2.6.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typescript": "^2.3.4"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}