forked from prisma-labs/graphql-import-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 995 Bytes
/
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
{
"name": "graphql-import-loader",
"version": "0.0.0-semantic-release",
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphql-import-loader.git"
},
"keywords": [
"graphql",
"import",
"webpack",
"loader",
"module"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-import-loader/issues"
},
"homepage": "https://github.com/graphcool/graphql-import-loader",
"scripts": {
"prepare": "npm run build",
"build": "rm -rf dist && tsc -d",
"pretest": "npm run build",
"test": "jest"
},
"dependencies": {
"graphql-import": "^0.4.5"
},
"devDependencies": {
"@types/jest": "^22.1.4",
"@types/node": "^9.4.6",
"ts-jest": "^22.4.1",
"graphql": "^0.13.1",
"jest": "^22.4.2",
"memory-fs": "^0.4.1",
"typescript": "^2.7.2",
"webpack": "^4.0.1"
}
}