forked from smartprix/gqutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "gqutils",
"version": "1.1.3",
"description": "Utilities For GraphQL",
"main": "dist/index.js",
"repository": "smartprix/gqutils",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test-only",
"check-coverage": "true",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test-only": "mocha test/*.test.js",
"build": "babel src --out-dir dist",
"-precommit": "npm run build && npm test && npm run check-coverage",
"prepublishOnly": "npm run build"
},
"author": "Hitesh Khandelwal <[email protected]> (http://www.smartprix.com/)",
"license": "ISC",
"dependencies": {
"graphql-custom-types": "^1.3.0",
"graphql-subscriptions": "^0.5.7",
"graphql-tools": "^2.21.0",
"graphql-type-json": "^0.1.4",
"lodash": "^4.17.5"
},
"peerDependencies": {
"graphql": "*"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "6.26.0",
"chai": "4.1.2",
"eslint": "4.18.0",
"eslint-config-smartprix": "3.3.1",
"graphql": "^0.13.1",
"mocha": "5.0.1"
},
"babel": {
"plugins": [
"transform-export-extensions",
"transform-class-properties",
"transform-object-rest-spread",
"transform-es2015-modules-commonjs"
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "smartprix",
"rules": {}
}
}