This repository was archived by the owner on Jul 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.69 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "linnet",
"version": "0.4.1",
"license": "MIT",
"author": "Owen Kelly <owen@owenkelly.com.au>",
"description": "Create, update and manage your AWS AppSync API",
"scripts": {
"coverage": "intern",
"build": "yarn clean && tsc -p tsconfig.json && yarn build-lambdas",
"build-watch": "tsc -p tsconfig.json --watch",
"dev": "multiview [yarn build-watch] [yarn test-watch]",
"test": "intern -h",
"test-watch": "./node_modules/@theintern/cli/bin/intern.js watch",
"cli": "ts-node src/index",
"dev-aws": "ts-node tests/assumeRole.ts assumeRole --command 'ava-ts ./**/*.spec.ts --watch'",
"debug": "DEBUG='wahn:*,bunjil:*' yarn dev",
"clean": "rimraf ./lib ./.nyc_output ./coverage",
"release-minor": "yarn run clean && yarn run build && standard-version --release-as minor",
"release-patch": "yarn run clean && yarn run build && standard-version --release-as patch",
"release-major": "yarn run clean && yarn run build && standard-version --sign --release-as major",
"build-lambdas": "bash ./scripts/build-lambdas.sh"
},
"dependencies": {
"@theintern/cli": "^1.0.0-beta.4",
"aws-sdk": "^2.238.1",
"chalk": "^2.4.1",
"chokidar-cli": "^1.2.0",
"commander": "^2.15.1",
"coveralls": "^3.0.2",
"faker": "^4.1.0",
"fs-extra": "^6.0.1",
"gql-merge": "^0.0.6",
"gql-utils": "^0.0.2",
"graphql": "^0.13.2",
"graphql-tools": "^3.0.1",
"ini": "^1.3.5",
"inquirer": "^5.2.0",
"intern": "^4.2.0",
"js-yaml": "^3.11.0",
"listr": "^0.14.1",
"listr-update-renderer": "^0.4.0",
"multiview": "^2.5.3",
"nyc": "^12.0.2",
"pluralize": "^7.0.0",
"prompt": "^1.0.0",
"promptly": "^3.0.3",
"readline-sync": "^1.4.9",
"remap-istanbul": "^0.11.1",
"rxjs": "^6.2.2",
"through": "^2.3.8",
"through2": "^2.0.3",
"typescript": "^3.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.3",
"@types/faker": "^4.1.2",
"@types/fs-extra": "^5.0.2",
"@types/graphql": "^0.13.1",
"@types/ini": "^1.3.29",
"@types/inquirer": "0.0.41",
"@types/js-yaml": "^3.11.1",
"@types/node": "10.1.4",
"@types/ora": "^1.3.4",
"@types/pluralize": "0.0.28",
"@types/promptly": "^1.1.28",
"@types/readline-sync": "^1.4.3",
"@types/sinon": "^4.3.3",
"@types/through": "0.0.29",
"@types/through2": "^2.0.33",
"@types/uuid": "^3.4.3",
"ava": "^0.25.0",
"ava-ts": "^0.24.5",
"aws-sdk-mock": "^2.0.0",
"gql-format": "^0.0.5",
"rimraf": "^2.6.2",
"sinon": "^5.0.7",
"standard-version": "^4.3.0",
"ts-node": "^7.0.0"
},
"resolutions": {
"@types/node": "10.1.4",
"rxjs": "^6.2.2"
}
}