-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.37 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": "testcafe-graphql-mock",
"description": "Mock out a GraphQL schema from the client",
"version": "0.0.3",
"scripts": {
"dev": "tsc --declarationMap -w",
"test-app:run": "cd client && SKIP_PREFLIGHT_CHECK=true npm start",
"test-app:build": "cd client && SKIP_PREFLIGHT_CHECK=true yarn build",
"test-app:serve": "serve -s -l 3000 client/build",
"prerelease": "tsc --declarationMap",
"release": "npm cache clean --force && npm version patch && npm publish",
"test": "npx testcafe chrome:headless test/**/*.spec.js"
},
"main": "dist",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"README.md"
],
"author": "Abhinaba Ghosh <askabhinaba@gmail.com>",
"license": "MIT",
"dependencies": {
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"tslib": "^1.9.3",
"@types/graphql": "^14.0.3"
},
"peerDependencies": {
"graphql": "^14.0.2"
},
"devDependencies": {
"testcafe": "^1.8.8",
"serve": "^11.1.0",
"ts-loader": "^6.0.4",
"graphql": "^14.0.2",
"typescript": "^3.2.2",
"wait-on": "^3.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/testcafe-graphql-mock.git"
},
"bugs": {
"url": "https://github.com/abhinaba-ghosh/testcafe-graphql-mock/issues"
},
"homepage": "https://github.com/abhinaba-ghosh/testcafe-graphql-mock#readme"
}