-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
64 lines (64 loc) · 1.72 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
{
"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 <[email protected]>",
"license": "MIT",
"peerDependencies": {
"apollo-server": ">=3.0.0",
"apollo-server-env": "*",
"graphql": ">=0.10.x",
"opentracing": "*"
},
"dependencies": {
"apollo-server-plugin-base": "^3.0.0",
"apollo-server-types": "^3.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "11.0.0",
"@commitlint/travis-cli": "17.0.0",
"@types/jest": "26.0.24",
"@types/node": "14.18.38",
"@types/supertest": "2.0.12",
"all-contributors-cli": "6.24.0",
"apollo-server": "3.13.0",
"apollo-server-env": "4.2.1",
"express": "4.20.0",
"graphql": "15.8.0",
"graphql-tools": "6.2.6",
"jest": "27.5.1",
"opentracing": "0.14.7",
"semantic-release": "20.0.1",
"supertest": "5.0.0",
"travis-deploy-once": "5.0.11",
"ts-jest": "27.0.4",
"typescript": "4.9.5"
}
}