forked from DanielMSchmidt/apollo-opentracing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "apollo-opentracing",
"version": "0.0.0-development",
"description": "Trace your GraphQL server with Opentracing",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc",
"prepare": "npm run clean && npm run compile",
"test": "jest",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": "DanielMSchmidt/apollo-opentracing",
"author": "Daniel Schmidt <danielmschmidt92@gmail.com>",
"license": "MIT",
"peerDependencies": {
"apollo-server-env": "*",
"graphql": "0.10.x - 14.4.x",
"opentracing": "*",
"apollo-server": "^2.4.8"
},
"dependencies": {
"apollo-server-types": "^0.2.1",
"graphql-extensions": "^0.7.0"
},
"devDependencies": {
"@types/graphql": "14.2.2",
"@types/jest": "23.3.14",
"@types/node": "11.15.9",
"all-contributors-cli": "6.13.0",
"apollo-server": "2.6.8",
"apollo-server-env": "2.4.0",
"express": "4.17.1",
"graphql": "14.4.2",
"graphql-tools": "4.0.5",
"jest": "23.6.0",
"opentracing": "0.14.3",
"semantic-release": "15.13.18",
"supertest": "4.0.2",
"travis-deploy-once": "5.0.11",
"ts-jest": "23.1.4",
"typescript": "3.5.3"
}
}