generated from cnwangjie/ts-mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "normalize-graphql-query",
"version": "1.4.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "types/index.d.ts",
"repository": "https://github.com/cnwangjie/normalize-graphql-query.git",
"author": "Wang Jie <[email protected]>",
"license": "MIT",
"devDependencies": {
"@graphql-tools/schema": "^10.0.0",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.31",
"apollo-server": "^3.8.1",
"eslint": "^7.21.0",
"graphql-scalars": "^1.22.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"scripts": {
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.build.json -m commonjs --outDir dist/cjs",
"build:esm": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist types",
"test": "jest",
"prepublishOnly": "yarn build"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"dependencies": {
"graphql": "^16.5.0"
},
"peerDependencies": {
"graphql": "^16"
}
}