UNPKG

1.58 kBJSONView Raw
1{
2 "name": "graphql-import",
3 "version": "0.4.0",
4 "license": "MIT",
5 "repository": "git@github.com:graphcool/graphql-import.git",
6 "files": [
7 "dist"
8 ],
9 "main": "dist/index.js",
10 "typings": "dist/index.d.ts",
11 "typescript": {
12 "definition": "dist/index.d.ts"
13 },
14 "nyc": {
15 "extension": [
16 ".ts"
17 ],
18 "require": [
19 "ts-node/register"
20 ],
21 "include": [
22 "src/**/*.ts"
23 ],
24 "exclude": [
25 "**/*.d.ts",
26 "**/*.test.ts"
27 ],
28 "all": true,
29 "sourceMap": true,
30 "instrument": true
31 },
32 "scripts": {
33 "prepare": "npm run build",
34 "build": "rm -rf dist && tsc -d",
35 "testlocal": "npm run build && nyc --reporter lcov --reporter text ava-ts --verbose src/**/*.test.ts",
36 "test-only": "npm run build && nyc --reporter lcov ava-ts --verbose src/**/*.test.ts --tap | tap-xunit > ~/reports/ava.xml",
37 "test": "tslint src/**/*.ts && npm run test-only",
38 "docs": "typedoc --out docs src/index.ts --hideGenerator --exclude **/*.test.ts",
39 "docs:publish": "cp ./now.json ./docs && cd docs && now --public -f && now alias && now rm --yes --safe graphql-import & cd .."
40 },
41 "devDependencies": {
42 "@types/node": "8.5.8",
43 "@types/graphql": "0.11.8",
44 "@types/lodash": "4.14.92",
45 "ava": "0.24.0",
46 "ava-ts": "0.24.0",
47 "nyc": "11.4.1",
48 "tap-xunit": "2.2.0",
49 "ts-node": "4.1.0",
50 "tslint": "5.9.1",
51 "tslint-config-standard": "7.0.0",
52 "typedoc": "0.9.0",
53 "typescript": "2.6.2"
54 },
55 "dependencies": {
56 "graphql": "^0.12.3",
57 "lodash": "^4.17.4"
58 }
59}