-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
57
{
"name": "graphql-objectid-scalar",
"version": "1.0.5",
"description": "MongoDB objectId scalar for GraphQL.js",
"files": [
"lib/**/*"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint --ext ts src",
"test": "npx jest --detectOpenHandles --maxWorkers=1 --coverage"
},
"prettier": {
"printWidth": 140,
"semi": true,
"tabWidth": 4,
"bracketSpacing": true,
"arrowParens": "always"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captorab/graphql-objectid-scalar.git"
},
"keywords": [
"graphql",
"scalar",
"mongodb",
"ObjectId"
],
"author": {
"name": "Andreas Lindh",
"email": "[email protected]",
"url": "https://captor.se"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/captorab/graphql-objectid-scalar/issues"
},
"homepage": "https://github.com/captorab/graphql-objectid-scalar#readme",
"peerDependencies": {
"graphql": ">=0.8.0",
"mongodb": ">=3.0.0"
},
"devDependencies": {
"@types/jest": "^27",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"eslint": "^7",
"eslint-config-prettier": "^8",
"eslint-config-standard": "^16",
"jest": "^27",
"prettier": "2.4.1",
"ts-jest": "^27",
"typescript": "^4"
}
}