-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "iris",
"version": "0.1.0",
"description": "An alternative type system for GraphQL",
"license": "MIT",
"private": true,
"main": "index",
"module": "index.mjs",
"sideEffects": false,
"homepage": "https://github.com/iris-qraphql/iris-js",
"bugs": {
"url": "https://github.com/iris-qraphql/iris-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iris-qraphql/iris-js.git"
},
"keywords": [
"iris",
"graphql"
],
"engines": {
"node": "^12.22.0 || ^14.16.0 || >=16.0.0"
},
"scripts": {
"version": "ts-node scripts/gen-version.ts && npm test && git add src/version.ts",
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling",
"lint": "eslint --cache --max-warnings 0 .",
"check": "tsc --pretty",
"testonly": "jest",
"testonly:cover": "c8 npm run testonly",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"check:spelling": "cspell --cache --no-progress '**/*'",
"demo": "ts-node scripts/demo.ts"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.31",
"@types/ramda": "^0.28.12",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"c8": "^7.11.2",
"cspell": "^5.20.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"jest": "^28.1.0",
"jest-environment-node": "^28.1.0",
"jest-matcher-utils": "^28.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"optionalDependencies": {
"apollo-server": "^3.7.0"
},
"publishConfig": {
"tag": "latest"
},
"dependencies": {
"graphql": "^16.4.0",
"ramda": "^0.28.0"
},
"jest": {
"preset": "ts-jest",
"transformIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/*.(js|ts)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.test.json",
"diagnostics": false
}
}
}
}