-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 812 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 812 Bytes
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
{
"name": "graphql-scraper",
"version": "1.2.1",
"description": "Extract structured data from the web using GraphQL.",
"author": "harry lachenmayer <harrylachenmayer@gmail.com>",
"license": "MIT",
"main": "build/index.js",
"bin": "bin.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "tsc; ava build/__tests__/",
"generate-docs": "graphql-markdown ./build/index.js > doc/schema.md"
},
"dependencies": {
"chalk": "^2.3.0",
"execa": "^0.9.0",
"get-stdin": "^5.0.1",
"graphql": "^0.12.3",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.5.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/graphql": "^0.12.0",
"@types/jsdom": "^11.0.4",
"ava": "^0.24.0",
"graphql-markdown": "^3.2.0",
"typescript": "^2.6.2"
}
}