-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "lightweight-di",
"version": "0.8.0",
"description": "Lightweight dependency injection for TypeScript and JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"test": "mocha --require ts-node/register --require source-map-support/register src/**/*.spec.ts",
"watch": "tsc -p tsconfig.build.json -w",
"watch-tests": "TS_NODE_CACHE=false mocha --compilers ts:ts-node/register --require source-map-support/register src/**/*.spec.ts --reporter min --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/leonadler/lightweight-di.git"
},
"keywords": [
"dependency injection",
"dependency",
"injection",
"di",
"typescript",
"decorators"
],
"author": "Leon Adler <git@leon-adler.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonadler/lightweight-di/issues"
},
"homepage": "https://github.com/leonadler/lightweight-di#readme",
"dependencies": {
"reflect-metadata": "^0.1.13",
"tslib": "^2.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"onchange": "^7.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}