1 | {
|
2 | "name": "opentracing",
|
3 | "version": "0.14.7",
|
4 | "engines": {
|
5 | "node": ">=0.10"
|
6 | },
|
7 | "files": [
|
8 | "src",
|
9 | "lib",
|
10 | "dist"
|
11 | ],
|
12 | "license": "Apache-2.0",
|
13 | "licenses": [
|
14 | {
|
15 | "type": "Apache-2.0",
|
16 | "url": "https://opensource.org/licenses/Apache-2.0"
|
17 | }
|
18 | ],
|
19 | "main": "lib/index.js",
|
20 | "types": "lib/index.d.ts",
|
21 | "scripts": {
|
22 | "prepare": "npm run build",
|
23 | "lint": "tslint -t msbuild -c tslint.json 'src/**/*.ts'",
|
24 | "test": "mocha lib/test/unittest.js --check-leaks --color",
|
25 | "cover": "npm run test-cover && istanbul check-coverage",
|
26 | "test-cover": "istanbul cover --report lcovonly --print none ./node_modules/.bin/_mocha lib/test/unittest.js -- --check-leaks --color && istanbul report text",
|
27 | "cover-html": "istanbul cover --report html --print none ./node_modules/.bin/_mocha lib/test/unittest.js -- --check-leaks --color && istanbul report text",
|
28 | "webpack": "webpack --display-error-details",
|
29 | "build": "tsc -p .",
|
30 | "watch": "tsc -w -p .",
|
31 | "typedoc": "typedoc --out typedoc --tsconfig tsconfig.json --mode file",
|
32 | "example": "node lib/examples/demo/demo.js"
|
33 | },
|
34 | "repository": {
|
35 | "type": "git",
|
36 | "url": "https://github.com/opentracing/opentracing-javascript"
|
37 | },
|
38 | "dependencies": {},
|
39 | "devDependencies": {
|
40 | "@types/chai": "4.1.4",
|
41 | "@types/mocha": "2.2.40",
|
42 | "@types/node": "10.3.5",
|
43 | "chai": "^4.1.2",
|
44 | "clone": "^2.1.1",
|
45 | "colors": "^1.1.2",
|
46 | "coveralls": "^3.0.1",
|
47 | "cross-env": "^5.2.0",
|
48 | "istanbul": "^0.4.5",
|
49 | "json-loader": "^0.5.4",
|
50 | "mocha": "^2.4.5",
|
51 | "shelljs": "^0.8.2",
|
52 | "source-map-support": "^0.5.6",
|
53 | "surge": "^0.20.1",
|
54 | "ts-loader": "^4.4.1",
|
55 | "tslint": "^5.0.0",
|
56 | "typedoc": "^0.11.1",
|
57 | "typescript": "^3.2.2",
|
58 | "webpack": "^4.29.5",
|
59 | "webpack-cli": "^3.2.3"
|
60 | }
|
61 | }
|