-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "basictracer",
"description": "The Javascript implementation of the BasicTracer referrence implementation",
"repository": "opentracing/basictracer-javascript",
"version": "0.2.3",
"main": "dist/index.js",
"keywords": [
"opentracing"
],
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.8.0",
"eslint-plugin-babel": "^3.2.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"should": "^8.3.1"
},
"license": "Apache-2.0",
"dependencies": {
"debug": "^2.2.0",
"lodash.clone": "^4.3.2",
"long": "^3.1.0",
"opentracing": "^0.9.18",
"node-uuid": "^1.4.7",
"protobufjs": "^5.0.1"
},
"scripts": {
"debug": "./node_modules/.bin/mocha --debug-brk --require should test",
"build": "babel src -d dist --copy-files",
"lint": "eslint .",
"test": "NODE_ENV=test babel-node ./node_modules/.bin/_mocha --reporter spec $npm_package_options_mocha",
"test-cov": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --root src --report html _mocha -- $npm_package_options_mocha",
"test-travis": "NODE_ENV=test babel-node ./node_modules/.bin/isparta cover --root src --report lcovonly _mocha -- $npm_package_options_mocha",
"preversion": "npm run build"
},
"options": {
"mocha": "--require ./resources/mocha-bootload --check-leaks --full-trace src/**/__tests__/**/*-test.js"
}
}