-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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": "gqlr",
"version": "2.0.1",
"description": "WIP: (g)raph(ql)-(r)equest. A simplified fork of graphql-request",
"type": "module",
"main": "cjs/index.js",
"module": "esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"keywords": [
"12core",
"graphql",
"graphql-request",
"esm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/little-core-labs/gqlr.git"
},
"scripts": {
"build": "rimraf cjs/* && ascjs esm cjs",
"prepare": "npm run build",
"prepublishOnly": "git push --follow-tags && gh-release -y",
"test": "run-s build test:*",
"test:deps": "dependency-check . --no-dev --no-peer",
"test:lint": "eslint --ext .js esm/",
"test:tape": "tap --no-check-coverage --jobs=1",
"version": "run-s prepare version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md cjs"
},
"author": "Bret Comnes <[email protected]> (https://bret.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/little-core-labs/gqlr/issues"
},
"homepage": "https://github.com/little-core-labs/gqlr#readme",
"dependencies": {
"lodash.get": "^4.4.2",
"node-fetch": "^2.6.0"
},
"devDependencies": {
"@12core/eslint-config-12core": "^5.0.0",
"ascjs": "^5.0.0",
"auto-changelog": "^2.0.0",
"body-parser": "^1.19.0",
"dependency-check": "^4.1.0",
"eslint": "^7.2.0",
"express": "^4.17.1",
"fetch-cookie": "^1.0.0",
"gh-release": "^6.0.0",
"npm-run-all2": "^5.0.0",
"rimraf": "^3.0.2",
"tap": "^15.0.1"
}
}