forked from kamranayub/graphql-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.38 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
{
"name": "graphql-extensions",
"version": "0.0.10",
"description": "Add extensions to GraphQL servers",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "rm -rf lib",
"compile": "tsc",
"watch": "tsc -w",
"prepare": "npm run clean && npm run compile",
"test": "./node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "apollographql/graphql-extensions"
},
"author": "Martijn Walraven <martijn@martijnwalraven.com>",
"license": "MIT",
"engines": {
"node": ">=4.0"
},
"dependencies": {
"core-js": "^2.5.3",
"source-map-support": "^0.5.1"
},
"peerDependencies": {
"graphql": "0.10.x - 0.13.x"
},
"devDependencies": {
"@types/graphql": "^0.12.6",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.0",
"graphql": "^0.13.2",
"jest": "^22.4.3",
"jest-matcher-utils": "^22.4.3",
"ts-jest": "^22.4.2",
"typescript": "^2.7.2"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/src/polyfills.js"
],
"testMatch": [
"**/test/**/*.(js|ts)",
"**/test/*.(js|ts)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/"
],
"transform": {
"^.+\\.(ts|js)x?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js"
]
}
}