-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "@wasc/graphql-authdirective",
"version": "2.0.1",
"description": "",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c --bundleConfigAsCjs",
"format": "wasc-tools format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*.{js,json,graphql,md,html,ts,tsx}": "npm run format --"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wasc-io/graphql-authDirective.git"
},
"author": "Nicolai Schmid <nicolai@schmid.uno>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wasc-io/graphql-authDirective/issues"
},
"homepage": "https://github.com/wasc-io/graphql-authDirective#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.1",
"@wasc/tools": "5.15.0",
"husky": "8.0.3",
"lint-staged": "13.0.2",
"rollup": "3.20.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-ts": "^3.0.2",
"standard-version": "^4.3.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@graphql-tools/utils": "^9.2.1",
"graphql": "^16.6.0"
}
}