-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"author": "Johan Arensman <[email protected]> (https://www.frontendr.com/)",
"description": "Removes unnecessary white space from graphql queries.",
"homepage": "https://github.com/frontendr/babel-plugin-transform-compress-graphql#readme",
"keywords": [
"babel",
"babel-plugin",
"graphql",
"query",
"compress",
"minification"
],
"license": "MIT",
"main": "lib/index.js",
"name": "babel-plugin-transform-compress-graphql",
"repository": {
"type": "git",
"url": "git+https://github.com/frontendr/babel-plugin-transform-compress-graphql.git"
},
"scripts": {
"build": "babel src --out-dir lib",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint . && echo \"eslint: no lint errors\"",
"prebuild": "rm -rf lib/",
"prepublishOnly": "npm run build",
"prettier": "prettier --write ./**/*.js",
"test": "eslint . && nyc npm run test:unit",
"test:unit": "mocha"
},
"version": "1.3.3",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "^7.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.1",
"prettier": "^2.0.5"
},
"dependencies": {
"graphql-query-compress": "^1.2.4"
}
}