-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 2.01 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
{
"name": "graphql-query-compress",
"version": "1.2.4",
"description": "Compress a GraphQL Query String",
"keywords": [ "graphql", "query", "compress" ],
"browser": "./lib/graphql-query-compress.browser.js",
"main": "./lib/graphql-query-compress.node.js",
"types": "./src/graphql-query-compress.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rse/graphql-query-compress.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"homepage": "https://github.com/rse/graphql-query-compress",
"bugs": "https://github.com/rse/graphql-query-compress/issues",
"dependencies": {
"tokenizr": "1.5.7"
},
"devDependencies": {
"grunt": "1.1.0",
"grunt-cli": "1.3.2",
"grunt-contrib-clean": "2.0.0",
"grunt-eslint": "23.0.0",
"grunt-browserify": "5.3.0",
"browserify": "16.5.1",
"babelify": "10.0.0",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"uglifyify": "5.0.2",
"browserify-header": "1.0.1",
"browserify-derequire": "1.0.1",
"browserify-shim": "3.8.14",
"babel-eslint": "10.1.0",
"eslint": "7.0.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0"
},
"scripts": {
"prepublishOnly": "grunt default",
"build": "grunt default"
}
}