-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "typeorm-scopes",
"version": "0.2.1",
"description": "Scopes implementation for typeorm",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"samples": "ts-node samples/simple.ts",
"lint": "eslint \"{src,samples,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,samples,test}/**/*.ts\" --fix",
"test": "jest"
},
"keywords": [
"typeorm",
"scopes"
],
"author": "Eugene Sinitsyn",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jougene/typeorm-scopes"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^26.1.0",
"prettier": "^1.19.1",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"sqlite3": "^5.0.0",
"typeorm": "^0.2.25"
},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": "test",
"testRegex": ".test.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}