-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@eagleeye/opentracing-javascript-utils",
"version": "1.0.6",
"description": "Utilities to Instrument your JS code with OpenTracing",
"main": "index.js",
"publishConfig" : {
"registry" : "https://maven.zalando.net/repository/npm-internal/"
},
"unpkg": "dist/opentracing-javascript-utils.min.js",
"directories": {
"lib": "lib"
},
"scripts": {
"prepublish": "npm run build",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalando-zmon/opentracing-javascript-utils.git"
},
"keywords": [
"opentracing",
"javascript"
],
"author": "Emanuel Lauria",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zalando-zmon/opentracing-javascript-utils/issues"
},
"homepage": "https://github.com/zalando-zmon/opentracing-javascript-utils#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"path": "^0.12.7",
"webpack": "^3.11.0"
},
"dependencies": {
"opentracing": "^0.14.1"
}
}