-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "node-graphql-constraint-lambda",
"version": "3.2.2",
"description": "GraphQL 'constraint' directive written in functional programming style",
"bugs": {
"url": "https://github.com/vsimko/node-graphql-constraint-lambda/issues"
},
"keywords": [
"graphql",
"validate",
"validation",
"validator",
"directive",
"constraint",
"checking",
"schema"
],
"main": "src/index.js",
"repository": "https://github.com/vsimko/node-graphql-constraint-lambda.git",
"author": "Viliam Simko <viliam.simko@gmail.com>",
"license": "MIT",
"dependencies": {
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"validator": "^13.7.0"
},
"peerDependencies": {
"graphql": "^0.13.0"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.1.0",
"jest-cli": "^23.1.0",
"standard-version": "^8.0.1"
},
"scripts": {
"git-cred": "git config credential.helper store",
"lint": "eslint .",
"test": "jest",
"release": "standard-version",
"release:push": "git push --follow-tags origin master",
"release:npm": "yarn publish"
}
}