-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
77 lines (77 loc) · 2.06 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
{
"name": "easygraphql-load-tester",
"version": "2.0.5",
"description": "Create GraphQL queries to use with test loaders.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "nyc --check-coverage --lines 90 mocha -r ts-node/register 'test/**/*.spec.{ts,js}' --exit",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,graphql}'",
"prettier:check": "prettier --write './{src,test}/**/*.{ts,js,graphql}'",
"prettier:format": "prettier --write './{src,test}/**/*.{ts,js,graphql}'",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:format && git add .",
"pre-push": "npm run test"
}
},
"homepage": "https://github.com/EasyGraphQL/easygraphql-load-tester",
"author": {
"name": "EasyGraphQL",
"url": "https://github.com/EasyGraphQL"
},
"repository": {
"type": "git",
"url": "https://github.com/EasyGraphQL/easygraphql-load-tester"
},
"bugs": {
"url": "https://github.com/EasyGraphQL/easygraphql-load-tester"
},
"license": "MIT",
"dependencies": {
"easygraphql-parser": "^0.0.13",
"lodash.flatten": "^4.4.0",
"lodash.isobject": "^3.0.2"
},
"devDependencies": {
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.isobject": "^3.0.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-node": "^10.0.0",
"graphql": "^14.5.8",
"husky": "^3.0.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0"
},
"files": [
"lib/**/*"
],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"examples/**",
"test/**",
".**"
],
"all": true
}
}