-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "@zeit/tracing-js",
"version": "0.4.3",
"description": "A partial implementation of the Opentracing JavaScript API for honeycomb.io backend",
"main": "dist/src/index.js",
"files": [
"dist/src/**",
"dist/types/**"
],
"scripts": {
"build": "tsc && yarn copy-types",
"watch": "tsc --watch",
"copy-types": "copyfiles -u 1 './types/**/*.d.ts' dist/types",
"fmt": "prettier --single-quote --bracket-spacing --trailing-comma all --write './{src,test,types,examples}/**/*.ts'",
"test": "tape dist/test/**.js",
"test-coverage": "npx c8 --reporter=lcov npm test && npx codecov"
},
"repository": "github:zeit/tracing-js",
"author": "styfle",
"license": "MIT",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/node": "^11.9.4",
"@types/node-fetch": "^2.1.6",
"@types/tape": "^4.2.33",
"copyfiles": "^2.1.0",
"node-fetch": "^2.3.0",
"prettier": "^1.16.4",
"tape": "^4.10.1",
"typescript": "^3.3.3"
},
"dependencies": {
"libhoney": "^1.2.1"
},
"peerDependencies": {
"node-fetch": "*"
}
}