This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.3 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
{
"name": "@okgrow/graphql-markdown",
"version": "0.0.2",
"license": "MIT",
"description": "Write markdown, serve as html, query via GraphQL.🔥",
"author": "OK GROW! <hello@okgrow.com> (https://www.okgrow.com)",
"homepage": "https://github.com/okgrow/graphql-markdown",
"keywords": [
"graphql",
"markdown",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/okgrow/graphql-markdown"
},
"bugs": {
"url": "https://github.com/okgrow/graphql-markdown/issues"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"format": "prettier-eslint --write \"src/**/*.js\"",
"prepare": "npm run rollup:build",
"rollup:build": "BABEL_ENV=build rollup -c",
"rollup:watch": "BABEL_ENV=build rollup -c -w"
},
"dependencies": {
"glob": "^7.1.2",
"gray-matter": "^4.0.1",
"lodash.clonedeep": "^4.5.0",
"marked": "^0.5.0",
"nedb": "^1.8.0"
},
"peerDependencies": {
"graphql": "^0.13.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"core-js": "^2.5.7",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.0",
"graphql": "^0.13.2",
"graphql-tools": "^3.1.1",
"jest": "^23.5.0",
"jest-transform-graphql": "^2.1.0",
"prettier": "^1.14.2",
"prettier-eslint-cli": "^4.7.1",
"rollup": "^0.64.1",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-graphql": "^0.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-watch": "^4.3.1"
},
"files": [
"dist"
]
}