forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
{
"name": "graphiql",
"version": "0.7.1",
"description": "An graphical interactive in-browser GraphQL IDE.",
"contributors": [
"Hyohyeon Jeong <asiandrummer@fb.com>",
"Lee Byron <lee@leebyron.com> (http://leebyron.com/)"
],
"homepage": "https://github.com/graphql/graphiql",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphiql.git"
},
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"files": [
"dist",
"graphiql.js",
"graphiql.min.js",
"graphiql.css",
"README.md",
"LICENSE"
],
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"options": {
"mocha": "--full-trace --require resources/mocha-bootload src/**/*-test.js"
},
"scripts": {
"test": "npm run lint && npm run check && npm run testonly",
"testonly": "babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha",
"lint": "eslint src",
"check": "flow check",
"build": ". ./resources/build.sh",
"preversion": ". ./resources/checkgit.sh && npm test",
"prepublish": ". ./resources/prepublish.sh"
},
"dependencies": {
"codemirror": "^5.13.2",
"codemirror-graphql": "^0.5.0",
"marked": "^0.3.5"
},
"peerDependencies": {
"graphql": "^0.5.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"babel-cli": "6.6.5",
"babel-eslint": "6.0.2",
"babel-plugin-syntax-async-functions": "6.5.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "6.6.5",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"browserify": "13.0.0",
"browserify-shim": "3.8.12",
"chai": "3.5.0",
"chai-subset": "1.2.2",
"eslint": "2.7.0",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-react": "4.3.0",
"flow-bin": "0.22.1",
"graphql": "0.5.0",
"jsdom": "8.3.0",
"mocha": "2.4.5",
"react": "15.0.1",
"react-addons-test-utils": "15.0.1",
"react-dom": "15.0.1",
"uglify-js": "^2.4.24",
"uglifyify": "^3.0.1"
}
}