-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·78 lines (78 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "graphql-extended",
"version": "0.0.48",
"description": "An extension of GraphQL adding higher order functionality.",
"author": "Michael Paris <[email protected]>",
"license": "MIT",
"homepage": "https://scaphold.io",
"repository": {
"type": "git",
"url": "git+https://github.com/scaphold-io/graphql-extended"
},
"bugs": {
"url": "https://github.com/scaphold-io/graphql-extended/issues"
},
"keywords": [
"graphql",
"javascript",
"typescript",
"emca",
"emca2016",
"graphql",
"npm",
"microservices"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {},
"scripts": {
"buildw": "./scripts/buildw",
"build": "./scripts/build",
"dev": "./scripts/dev",
"lint": "./scripts/lint",
"ci": "./scripts/ci",
"test": "jest",
"coverage": "jest --coverage",
"check": "npm run lint && npm run test",
"patch-release": "npm version patch && npm publish && git push --follow-tags",
"build-dot-flow": "./scripts/build-types"
},
"dependencies": {
"graphql": "^0.9.6",
"immutable": "^3.8.1",
"iterall": "1.0.3",
"tslib": "^1.5.0"
},
"devDependencies": {
"@types/graphql": "^0.9.0",
"@types/immutable": "^3.8.7",
"@types/jest": "^19.2.2",
"@types/node": "^6.0.38",
"graphql": "^0.9.3",
"install": "^0.8.7",
"jest": "^19.0.2",
"nodemon": "^1.11.0",
"npm": "^4.4.1",
"source-map-support": "^0.4.6",
"supertest": "^2.0.1",
"ts-jest": "^19.0.2",
"ts-node": "^2.0.0",
"tslint": "^4.2.0",
"typescript": "^2.2.1"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js"
],
"browser": false,
"testEnvironment": "node",
"roots": [
"<rootDir>/src"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
}
}