-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 KB
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
58
{
"name": "postgraphile-plugin-atomic-mutations",
"version": "1.0.4",
"description": "Postgraphile plugin to enable mutation atomicty with GraphQL requests containing multiple mutations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && yarn run lint",
"lint": "eslint . --ext .ts --fix",
"prepare": "yarn run build",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmperorRXF/postgraphile-plugin-atomic-mutations.git"
},
"keywords": [
"postgraphile",
"graphile",
"graphile-build",
"plugin",
"graphql"
],
"author": "Ruwan Xaviour Fernando",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmperorRXF/postgraphile-plugin-atomic-mutations/issues"
},
"homepage": "https://github.com/EmperorRXF/postgraphile-plugin-atomic-mutations",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"graphql": "^15.0.0",
"jest": "^26.0.1",
"postgraphile": "^4.7.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}