forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.93 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
{
"name": "codemirror-graphql",
"version": "0.11.2",
"description": "GraphQL mode and helpers for CodeMirror.",
"contributors": [
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)",
"Angel Gomez Salazar <[email protected]>"
],
"homepage": "https://github.com/graphql/graphiql/tree/master/packages/codemirror-graphql#readme",
"repository": "https://github.com/graphql/graphiql",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:codemirror-graphql"
},
"license": "MIT",
"files": [
"src/locales",
"hint.js",
"info.js",
"jump.js",
"lint.js",
"mode.js",
"utils",
"i18n.js",
"variables",
"results",
"README.md",
"LICENSE"
],
"options": {
"mocha": "--full-trace --require resources/mochaBootload src/*/__tests__/*-test.js",
"mocha_tdd": "--full-trace --watch --require resources/mochaBootload src/**/*/__tests__/*-test.js"
},
"scripts": {
"lint": "eslint src",
"check": "flow check",
"build": "babel src --root-mode upward --ignore __tests__ --out-dir .",
"build-js": "node ../../resources/buildJs.js",
"build-flow": "node ../../resources/buildFlow.js",
"watch": "babel --optional runtime resources/watch.js | node",
"prepublish": "node ../../resources/prepublish.js",
"test": "mocha $npm_package_options_mocha"
},
"peerDependencies": {
"codemirror": "^5.26.0",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"i18next": "~17.0.16",
"i18next-browser-languagedetector": "~3.0.3"
},
"dependencies": {
"graphql-language-service-interface": "^2.3.0",
"graphql-language-service-parser": "^1.5.0"
},
"devDependencies": {
"chai": "4.1.1",
"chai-subset": "1.5.0",
"codemirror": "^5.28.0",
"graphql": "^14.0.2",
"jsdom": "^11.2.0",
"mocha": "3.5.0",
"sane": "2.0.0",
"babel-plugin-inline-json-import": "^0.3.2"
}
}