-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.71 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": "@anvilco/apollo-server-plugin-introspection-metadata",
"version": "2.2.3",
"description": "A plugin for Apollo Server that allows for adding metadata to GraphQL Introspection Query responses.",
"author": "Anvil Foundry Inc. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/anvilco/apollo-server-plugin-introspection-metadata/issues"
},
"homepage": "https://github.com/anvilco/apollo-server-plugin-introspection-metadata#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/anvilco/apollo-server-plugin-introspection-metadata.git"
},
"keywords": [
"apollo-server",
"apollo-server-plugin",
"graphql",
"introspection",
"introspection-query"
],
"engines": {
"node": ">=14"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "./node_modules/.bin/babel src --out-dir dist",
"prepare": "yarn build",
"build:test": "yarn build && yarn test",
"test": "mocha --config ./test/mocha-config.js",
"test:debug": "yarn test --node-option inspect=0.0.0.0:9223",
"test:watch": "nodemon -x 'yarn build:test'",
"test:debug:watch": "nodemon -x 'yarn test:debug'"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"app-module-path": "^2.2.0",
"bdd-lazy-var": "^2.6.1",
"chai": "^4.3.4",
"eslint": "^8.10.0",
"eslint-plugin-mocha": "10",
"graphql": "^16.6.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rewire": "^7.0.0",
"rimraf": "^5.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
}
}