-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "jaeger-client-js",
"version": "1.0.0",
"description": "jaegertracing tracer implementation in JS",
"main": "src/index.js",
"scripts": {
"prestart": "npm run build:babel",
"start": "node dist",
"start:dev:local": "nodemon -w src --exec \"npm start\"",
"start:dev": "nodemon -w src --exec \"npm start\"",
"build:babel": "npx babel src --out-dir dist",
"test": "npx jest --coverage && cat ./coverage/lcov.info | codacy-coverage --accountToken Td3mbY6aY0Gc0OZH2oDJ --username sagrath23 --projectName jaeger-client-js"
},
"keywords": [
"babel"
],
"repository": "https://github.com/sagrath23/jaeger-client-js",
"author": "Steven Augusto Villegas Castellanos",
"license": "Apache-2.0",
"jest": {
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"codacy-coverage": "^3.1.0",
"eslint": "^5.5.0",
"jest": "^23.6.0",
"nodemon": "^1.18.4",
"regenerator-runtime": "^0.12.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"assert": "^1.4.1",
"jaeger-client": "^3.12.0",
"opentracing": "^0.14.3",
"superagent": "^4.0.0-beta.5",
"uuidv4": "^2.0.0",
"xorshift": "^1.1.1"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}