-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "@flagpolejs/graphql-scenario",
"version": "1.0.1",
"description": "Flagpole Add-On for GraphQL Testing",
"files": [
"dist/",
"README.md"
],
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 dist/",
"build": "npm run clean && tsc && npm run copy-files",
"build-tests": "cd tests && tsc && cd ..",
"test": "npm run build-tests && flagpole run -t basic -h",
"cdeps": "node_modules/madge/bin/cli.js --warning --circular --extensions js ./",
"pub": "npm run build && npm publish",
"format": "prettier . --write",
"lint": "eslint . --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flagpolejs/graphql-scenario.git"
},
"author": "Jason Byrne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flagpolejs/graphql-scenario/issues"
},
"homepage": "https://github.com/flagpolejs/graphql-scenario#readme",
"devDependencies": {
"@types/node": "^17.0.8",
"copyfiles": "^2.4.1",
"eslint": "^8.6.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"madge": "^5.0.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"flagpole": "^3.0.4",
"graphql": "^16.2.0",
"graphql-tag": "^2.12.6"
}
}