-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
85 lines (85 loc) · 2.07 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
81
82
83
84
85
{
"name": "graphiql",
"version": "0.4.9",
"description": "An graphical interactive in-browser GraphQL IDE.",
"contributors": [
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (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"
],
"babel": {
"optional": [
"es7.classProperties"
],
"loose": [
"es6.classes",
"es6.destructuring",
"es6.modules",
"es6.properties.computed",
"es6.spread",
"es6.templateLiterals"
]
},
"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": "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.6.0",
"codemirror-graphql": "^0.2.2",
"marked": "^0.3.5"
},
"peerDependencies": {
"graphql": "^0.4.16",
"react": "^0.14.0",
"react-dom": "^0.14.0"
},
"devDependencies": {
"babel": "5.8.23",
"babel-core": "5.8.25",
"babel-eslint": "4.1.8",
"browserify": "13.0.0",
"browserify-shim": "3.8.12",
"chai": "3.5.0",
"chai-subset": "1.2.0",
"eslint": "1.10.3",
"eslint-plugin-react": "3.16.1",
"flow-bin": "0.21.0",
"graphql": "0.4.16",
"jsdom": "8.0.2",
"mocha": "2.4.5",
"react": "0.14.7",
"react-dom": "0.14.7",
"uglify-js": "^2.4.24",
"uglifyify": "^3.0.1"
}
}