forked from apollographql/GraphiQL-Subscriptions-Fetcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "graphiql-subscriptions-fetcher",
"version": "0.0.2",
"main": "dist/index.js",
"repository": "https://github.com/apollographql/GraphiQL-Subscriptions-Fetcher.git",
"author": "Urigo <[email protected]>",
"license": "MIT",
"dependencies": {
"graphql": "^0.9.1",
"subscriptions-transport-ws": "0.5.4"
},
"scripts": {
"compile": "tsc",
"precompile": "yarn test",
"test": "jest",
"posttest": "yarn lint",
"lint": "tslint --format stylish ./src/**/*.ts",
"watch": "tsc -w",
"browser-compile": "webpack",
"prepublish": "yarn compile && yarn browser-compile"
},
"devDependencies": {
"@types/graphql": "^0.8.6",
"@types/jest": "^19.2.2",
"jest": "^19.0.2",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"webpack": "^2.3.2"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/jest.typescript.js"
},
"testRegex": "/tests/.*\\.(ts|tsx|js)$"
}
}