-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.92 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
{
"name": "graphql-security",
"version": "0.1.0",
"license": "MIT",
"authors": [
"Aramis Fernandes",
"Matija Gaspar",
"Richard Keil"
],
"repository": "[email protected]:fsdtf/graphql-security.git",
"homepage": "https://github.com/fsdtf/graphql-security#readme",
"bugs": {
"url": "https://github.com/fsdtf/graphql-security/issues"
},
"main": "dist/index.js",
"scripts": {
"dev": "yarn test --watch",
"build": "cross-env NODE_ENV=production webpack-cli",
"test": "yarn lint && jest",
"lint": "eslint --max-warnings 20 ./src",
"clean": "git clean -fdX .",
"prepublishonly": "yarn test && yarn build"
},
"files": [
"dist/",
"README.md",
"yarn.lock"
],
"engines": {
"node": ">=8"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^0.14.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-export-default-from": "7.2.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-optional-catch-binding": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/preset-env": "7.2.3",
"@commitlint/cli": "7.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-loader": "8.0.5",
"babel-plugin-macros": "2.4.5",
"cross-env": "5.2.0",
"eslint": "5.12.0",
"eslint-import-resolver-node": "0.3.2",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "22.1.3",
"graphql": "14.0.2",
"husky": "1.3.1",
"jest": "23.6.0",
"jest-chain": "1.0.5",
"jest-extended": "0.11.0",
"jest-junit-reporter": "1.1.0",
"source-map-support": "0.5.9",
"webpack": "4.28.3",
"webpack-cli": "3.2.1",
"webpack-node-externals": "1.7.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}