-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "zipkin-javascript-opentracing",
"version": "3.0.0",
"description": "An opentracing implementation for zipkin",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib && rm -r lib/__tests__",
"example:basic": "node example/basic/index.js",
"example:advanced": "node example/advanced/index.js",
"dev-example:basic": "nodemon example/basic/index.js",
"dev-example:advanced": "nodemon example/advanced/index.js",
"test": "jest",
"precommit": "lint-staged",
"prepare": "npm run build",
"fmt": "prettier '**/*.{js,json,css,md}' --write"
},
"jest": {
"collectCoverage": true,
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/DanielMSchmidt/zipkin-javascript-opentracing.git"
},
"keywords": [
"zipkin",
"opentracing",
"tracing",
"tracking",
"performance",
"benchmarking"
],
"author": "Daniel Schmidt",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielMSchmidt/zipkin-javascript-opentracing/issues"
},
"files": [
"lib/index.js"
],
"peerDependencies": {
"opentracing": "*",
"zipkin": ">=0.10.1",
"zipkin-transport-http": ">=0.10.1"
},
"homepage": "https://github.com/DanielMSchmidt/zipkin-javascript-opentracing#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.6.1",
"coveralls": "3.0.0",
"express": "4.16.3",
"husky": "0.14.3",
"jest": "22.4.3",
"lint-staged": "7.0.4",
"nodemon": "1.17.3",
"opentracing": "0.14.3",
"prettier": "1.12.0",
"zipkin": "0.10.1",
"zipkin-transport-http": "0.10.1"
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
}
}