forked from slicknode/graphql-query-complexity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "graphql-query-complexity",
"version": "0.1.2",
"description": "Validation rule for GraphQL query complexity analysis",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist/*",
"build": "tsc",
"test": "npm run lint && npm run testonly",
"testonly": "mocha --check-leaks --exit --full-trace --require ts-node/register 'src/**/__tests__/**/*-test.{ts,tsx}'",
"dist": "npm run clean && tsc && npm run build",
"prepublish": "npm run clean && npm run dist"
},
"directories": {
"lib": "./dist"
},
"dependencies": {},
"peerDependencies": {
"graphql": "^0.13.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": "ivome/graphql-query-complexity",
"keywords": [
"graphql",
"query complexity"
],
"author": "Ivo Meißner",
"license": "MIT",
"devDependencies": {
"@types/assert": "^0.0.31",
"@types/chai": "^4.1.4",
"@types/graphql": "^0.13.4",
"@types/mocha": "^5.2.5",
"chai": "^4.1.0",
"eslint": "^5.4.0",
"eslint-plugin-typescript": "^0.12.0",
"graphql": "^0.13.2",
"mocha": "^5.2.0",
"rimraf": "^2.6.1",
"ts-node": "^7.0.1",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0"
}
}