-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.16 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
{
"name": "gqutils",
"version": "1.8.2",
"description": "Utilities For GraphQL",
"main": "dist/index.js",
"browser": "dist/browser.js",
"repository": "smartprix/gqutils",
"directories": {
"test": "test"
},
"bin": "dist/bin/gqutils.js",
"scripts": {
"test": "npm run lint && npm run test-only",
"check-coverage": "true",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test-only": "mocha test/*.test.js",
"build": "rm -rf dist && babel src --out-dir dist",
"-precommit": "npm run build && npm test && npm run check-coverage",
"prepublishOnly": "npm run build"
},
"types": "index.d.ts",
"author": "Hitesh Khandelwal <[email protected]> (http://www.smartprix.com/)",
"license": "ISC",
"dependencies": {
"@types/graphql-list-fields": "^2.0.1",
"@types/node": "^12.0.7",
"commander": "^2.20.0",
"graphql-custom-types": "^1.5.0",
"graphql-list-fields": "^2.0.2",
"graphql-schema-typescript": "^1.2.9",
"graphql-type-json": "^0.3.0",
"lodash": "^4.17.11"
},
"peerDependencies": {
"graphql": "*",
"graphql-subscriptions": "*",
"graphql-tools": "*",
"sm-utils": "^2.21.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-smartprix": "^3.5.4",
"graphql": "^14.1.1",
"graphql-subscriptions": "^1.0.0",
"graphql-tools": "^4.0.4",
"mocha": "^6.1.4",
"sm-utils": "^2.21.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"modules": "commonjs",
"shippedProposals": true
}
]
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
]
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "smartprix",
"rules": {
"vue/script-indent": 0
},
"env": {
"browser": false,
"node": true
}
}
}