-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@anvilco/graphql-introspection-tools",
"version": "2.1.1",
"description": "A library to query and manipulate GraphQL Introspection Query results in some useful ways.",
"author": "Chris Newhouse",
"homepage": "https://github.com/anvilco/graphql-introspection-tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anvilco/graphql-introspection-tools.git"
},
"bugs": {
"url": "https://github.com/anvilco/graphql-introspection-tools/issues"
},
"keywords": [
"graphql",
"schema",
"introspection",
"introspection-query",
"introspection-query-manipulator",
"query",
"remove",
"manipulate",
"manipulator"
],
"main": "index.js",
"files": [
"package.json",
"README.md",
"LICENSE.md",
"CHANGELOG.md",
"dist/"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "babel src --out-dir ./dist",
"clean": "yarn rimraf ./dist",
"prepare": "yarn clean && yarn build",
"pub": "yarn prepare && npm publish",
"pub:dry-run": "yarn prepare && npm publish --dry-run",
"test": "yarn prepare && yarn mocha --config ./test/mocha-config.js",
"test:watch": "nodemon -x 'yarn test' --ignore dist/",
"test:debug:watch": "nodemon -x 'yarn test:debug' --ignore dist/",
"test:debug": "yarn test --node-option inspect=0.0.0.0:9223"
},
"dependencies": {
"lodash.defaults": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.unset": "^4.5.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.0",
"bdd-lazy-var": "^2.6.1",
"chai": "^4.3.6",
"eslint": "^8.10.0",
"eslint-plugin-mocha": "^10.0.3",
"graphql": "^16.3.0",
"lodash.isequal": "^4.5.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1"
}
}