-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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": "nestjs-graphql-validator",
"version": "0.0.11",
"description": "The simple nestjs library for validating graphql fields",
"main": "./dist/index.js",
"scripts": {
"build": "npx tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "npx tslint -c tslint.json 'src/**/*.ts' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JaLe29/nestjs-graphql-validator.git"
},
"keywords": [
"nestjs",
"graphql",
"validator"
],
"author": "JaLe",
"license": "ISC",
"bugs": {
"url": "https://github.com/JaLe29/nestjs-graphql-validator/issues"
},
"homepage": "https://github.com/JaLe29/nestjs-graphql-validator#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@nestjs/testing": "^7.0.8",
"@types/lodash.get": "^4.4.6",
"babel-jest": "^25.3.0",
"jest": "^25.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.8"
},
"dependencies": {
"lodash.get": "^4.4.2"
}
}