-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.36 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-default-value-transformer",
"version": "2.0.1",
"description": "A GraphQL transform that enables default values for a scalar or enum type.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build && npm run test",
"clean": "rm -rf ./lib"
},
"keywords": [
"graphql",
"appsync",
"aws"
],
"repository": {
"type": "git",
"url": "https://github.com/trek10inc/graphql-default-value-transformer.git"
},
"author": "Rob Ribeiro",
"license": "MIT",
"dependencies": {
"graphql": "^14.5.8",
"graphql-mapping-template": "^4.13.3",
"graphql-transformer-common": "^4.14.0",
"graphql-transformer-core": "^6.16.1"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^25.1.1",
"@types/node": "^10.17.20",
"aws-sdk": "^2.259.1",
"graphql-appsync-transformer": "^1.0.35",
"graphql-dynamodb-transformer": "^6.16.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost",
"testRegex": "(src/__tests__/.*.test.*)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}