-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "graphql-query-parser",
"description": "A utility for parsing queries out of GraphQL files",
"author": "Mikey Sleevi <development@frogman.simplelogin.com>",
"version": "0.1.2",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"graphql",
"parse",
"query"
],
"homepage": "https://github.com/iveelsm/graphql-query-parser#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iveelsm/graphql-query-parser.git"
},
"bugs": {
"url": "https://github.com/iveelsm/graphql-query-parser/issues"
},
"files": [
"dist"
],
"sideEffects": false,
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "npm run clean && npm run build:compile",
"build:compile": "tsc --project tsconfig.json",
"build:dependency": "depcruise --exclude \"^node_modules\" --output-type dot lib | dot -T svg > dependencygraph.svg",
"clean": "rm -rf dist",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"coverage": "c8 --reporter=lcov --reporter=text node --import tsx --test tests/**/*-test.ts",
"test": "node --import tsx --test tests/**/*-test.ts",
"unit": "node --import tsx --test tests/unit/**/*-test.ts",
"integration": "node --import tsx --test tests/integration/**/*-test.ts"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@tsconfig/recommended": "^1.0.13",
"@types/node": "^24.0.0",
"c8": "^11.0.0",
"dependency-cruiser": "^17.0.0",
"eslint": "^10.0.0",
"eslint-plugin-perfectionist": "^5.5.0",
"globals": "^17.0.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
}
}