-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "graphqlhub-schemas",
"repository": "clayallsopp/graphqlhub",
"version": "0.1.0",
"description": "GraphQL Schemas for REST APIs like Github, Hacker News, Reddit, and Twitter",
"main": "lib/index.js",
"files": [
"lib",
"in-publish.js",
"README.md"
],
"scripts": {
"test": "node test.js",
"bundle": "./node_modules/.bin/babel src --out-dir lib --ignore **/__tests__/**",
"prepublish": "./in-publish.js && npm run bundle || exit 0",
"watch": "./node_modules/.bin/babel src --watch --out-dir lib --ignore **/__tests__/**"
},
"author": "Clay Allsopp <[email protected]>",
"license": "MIT",
"dependencies": {
"giphy-api": "^1.2.1",
"github-api": "https://github.com/clayallsopp/github/tarball/fork",
"graphql-relay": "0.3.6",
"lodash": "3.10.1",
"node-fetch": "1.3.2",
"twit": "^2.2.5"
},
"peerDependencies": {
"graphql": "~0.4.2"
},
"devDependencies": {
"babel-cli": "6.3.13",
"babel-plugin-transform-object-rest-spread": "6.3.13",
"babel-preset-es2015": "6.3.13",
"babel-register": "6.3.13",
"dotenv": "1.2.0",
"glob": "6.0.2",
"nodemon": "1.8.1",
"sane": "1.2.0",
"tape": "4.4.0"
},
"engines": {
"node": "4.1.0",
"npm": "3.5.3"
}
}