forked from ardatan/graphql-import
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "graphql-import",
"version": "0.0.0-semantic-release",
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"repository": "git@github.com:graphcool/graphql-import.git",
"files": ["dist"],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"nyc": {
"extension": [".ts"],
"require": ["ts-node/register"],
"include": ["src/**/*.ts"],
"exclude": ["**/*.d.ts", "**/*.test.ts"],
"all": true,
"sourceMap": true,
"instrument": true
},
"scripts": {
"prepare": "npm run build",
"build": "rm -rf dist && tsc -d",
"testlocal":
"npm run build && nyc --reporter lcov --reporter text ava-ts -u --verbose src/**/*.test.ts",
"test-only":
"npm run build && mkdir -p ~/reports && nyc --reporter lcov ava-ts --verbose src/**/*.test.ts --tap | tap-xunit > ~/reports/ava.xml",
"test": "tslint src/**/*.ts && npm run test-only",
"docs":
"typedoc --out docs src/index.ts --hideGenerator --exclude **/*.test.ts",
"docs:publish":
"cp ./now.json ./docs && cd docs && now --public -f && now alias && now rm --yes --safe graphql-import & cd .."
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"devDependencies": {
"@types/graphql": "14.2.3",
"@types/lodash": "4.14.136",
"@types/resolve-from": "0.0.18",
"@types/node": "9.6.51",
"ava": "0.25.0",
"ava-ts": "0.25.2",
"graphql": "14.4.2",
"nyc": "11.9.0",
"tap-xunit": "2.4.1",
"ts-node": "7.0.1",
"tslint": "5.19.0",
"tslint-config-standard": "7.1.0",
"typedoc": "0.14.2",
"typescript": "3.5.3"
},
"dependencies": {
"lodash": "^4.17.4",
"resolve-from": "^4.0.0"
}
}