forked from graphql/codemirror-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.07 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.07 KB
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
81
82
83
{
"name": "codemirror-graphql",
"version": "0.5.9",
"description": "GraphQL mode and helpers for CodeMirror.",
"contributors": [
"Hyohyeon Jeong <asiandrummer@fb.com>",
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)"
],
"homepage": "https://github.com/graphql/codemirror-graphql",
"bugs": {
"url": "https://github.com/graphql/codemirror-graphql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/graphql/codemirror-graphql.git"
},
"license": "BSD-3-Clause",
"files": [
"hint.js",
"mode.js",
"lint.js",
"utils",
"variables",
"results",
"README.md",
"LICENSE"
],
"options": {
"mocha": "--full-trace --require resources/mocha-bootload src/**/__tests__/**/*-test.js",
"mocha_tdd": "--full-trace --watch --require resources/mocha-bootload src/**/__tests__/**/*-test.js"
},
"scripts": {
"test": "npm run lint && npm run testonly",
"testonly": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha",
"testwatch": "babel-node --inspect ./node_modules/.bin/_mocha $npm_package_options_mocha_tdd",
"lint": "eslint src",
"check": "flow check",
"build": "babel src --ignore __tests__ --out-dir .",
"watch": "babel --optional runtime resources/watch.js | node",
"preversion": ". ./resources/checkgit.sh && npm test",
"prepublish": ". ./resources/prepublish.sh"
},
"peerDependencies": {
"graphql": "^0.6.0 || ^0.7.0 || ^0.8.0",
"codemirror": "^5.6.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-eslint": "7.1.1",
"babel-plugin-check-es2015-constants": "6.8.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
"babel-plugin-transform-es2015-block-scoping": "6.21.0",
"babel-plugin-transform-es2015-classes": "6.18.0",
"babel-plugin-transform-es2015-computed-properties": "6.8.0",
"babel-plugin-transform-es2015-destructuring": "6.19.0",
"babel-plugin-transform-es2015-duplicate-keys": "6.8.0",
"babel-plugin-transform-es2015-function-name": "6.9.0",
"babel-plugin-transform-es2015-literals": "6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
"babel-plugin-transform-es2015-object-super": "6.8.0",
"babel-plugin-transform-es2015-parameters": "6.21.0",
"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
"babel-plugin-transform-es2015-spread": "6.8.0",
"babel-plugin-transform-es2015-template-literals": "6.8.0",
"babel-plugin-transform-flow-strip-types": "6.21.0",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-plugin-transform-regenerator": "6.21.0",
"chai": "3.5.0",
"chai-subset": "1.4.0",
"codemirror": "5.22.0",
"eslint": "3.13.1",
"eslint-plugin-babel": "4.0.0",
"eslint-plugin-flowtype": "2.29.2",
"flow-bin": "0.37.4",
"graphql": "0.8.1",
"jsdom": "9.9.1",
"mocha": "3.2.0",
"sane": "1.5.0"
}
}