-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.03 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": "hasura-om",
"version": "1.2.1",
"description": "Hasura Fragment focused ORM library",
"author": "Spartak <[email protected]> (https://spartak.io/)",
"keywords": [
"hasura",
"graphql",
"orm",
"nodejs"
],
"homepage": "https://mrspartak.github.io/hasura-om/",
"repository": {
"type": "git",
"url": "https://github.com/mrspartak/hasura-om.git"
},
"main": "src/index.js",
"scripts": {
"test": "xo && nyc --reporter=html --reporter=lcovonly ava --verbose",
"test:dev": "xo --fix && nyc --reporter=html --reporter=text ava --watch --verbose",
"release": "npm-github-release",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"license": "MIT",
"xo": {
"space": false,
"overrides": [
{
"files": "tests/*.js",
"rules": {
"no-unused-vars": 0
}
}
],
"prettier": true,
"rules": {
"no-var": 0,
"no-await-in-loop": 0,
"no-redeclare": 0,
"no-return-assign": 0,
"camelcase": 0,
"block-scoped-var": 0,
"no-sequences": 0,
"no-negated-condition": 0,
"no-async-promise-executor": 0,
"unicorn/no-reduce": 0
},
"ignores": [
"docs/**"
]
},
"ava": {
"files": [
"tests/**/*"
],
"require": [
"esm"
],
"failWithoutAssertions": false,
"concurrency": 10,
"timeout": "25s"
},
"husky": {
"hooks": {
"pre-commit": "xo --fix && ava --fail-fast"
}
},
"dependencies": {
"axios": "^0.21.1",
"graphql": "^15.0.0",
"subscriptions-transport-ws": "^0.9.16",
"ws": "^7.3.0"
},
"devDependencies": {
"ackee-tracker": "^5.0.1",
"ava": "^3.8.2",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"graphql-tag": "^2.10.3",
"husky": "^5.0.9",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"tap-dot": "^2.0.0",
"vuepress": "^1.5.0",
"xo": "^0.32.0"
}
}