forked from typestack/typeorm-typedi-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "typeorm-typedi-extensions",
"version": "0.4.1",
"description": "Dependency injection and service container integration with TypeORM using TypeDI library.",
"author": "TypeORM contributors",
"license": "MIT",
"sideEffects": false,
"main": "./cjs/index.js",
"module": "./esm5/index.js",
"es2015": "./esm2015/index.js",
"typings": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/typeorm/typeorm-typedi-extensions.git"
},
"tags": [
"orm",
"typescript",
"typescript-orm",
"typeorm-typedi-extensions",
"typeorm-typedi"
],
"scripts": {
"build": "npm run build:cjs",
"build:clean": "rimraf build",
"build:es2015": "tsc --project tsconfig.prod.esm2015.json",
"build:esm5": "tsc --project tsconfig.prod.esm5.json",
"build:cjs": "tsc --project tsconfig.prod.cjs.json",
"build:types": "tsc --project tsconfig.prod.types.json",
"prettier:fix": "prettier --write \"**/*.{ts,md}\"",
"prettier:check": "prettier --check \"**/*.{ts,md}\"",
"test": "cd test && npm run test"
},
"devDependencies": {
"@types/node": "^14.14.21",
"prettier": "^2.2.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"typedi": "^0.10.0",
"typeorm": "^0.2.30",
"typescript": "^4.1.3"
},
"peerDependencies": {
"typedi": ">=0.10.0",
"typeorm": ">=0.2.30"
}
}