forked from opentracing/opentracing-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 KB
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
52
53
54
55
{
"name": "opentracing",
"version": "0.14.2",
"engines": {
"node": ">=0.10"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"lint": "tslint -t msbuild -c tslint.json 'src/**/*.ts'",
"test": "mocha lib/test/unittest.js --check-leaks --color",
"cover": "npm run test-cover && istanbul check-coverage",
"test-cover": "istanbul cover --report lcovonly --print none ./node_modules/.bin/_mocha lib/test/unittest.js -- --check-leaks --color && istanbul report text",
"cover-html": "istanbul cover --report html --print none ./node_modules/.bin/_mocha lib/test/unittest.js -- --check-leaks --color && istanbul report text",
"webpack": "webpack --display-error-details",
"build": "tsc -p .",
"watch": "tsc -w -p .",
"typedoc": "typedoc --out typedoc --tsconfig tsconfig.json --mode file",
"example": "node lib/examples/demo/demo.js"
},
"repository": {
"type": "git",
"url": "https://github.com/opentracing/opentracing-javascript"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "3.4.35",
"@types/mocha": "2.2.40",
"@types/node": "7.0.12",
"chai": "^3.4.1",
"clone": "^1.0.2",
"colors": "^1.1.2",
"coveralls": "^2.11.12",
"cross-env": "^4.0.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"shelljs": "^0.5.3",
"source-map-support": "^0.3.3",
"surge": "^0.19.0",
"ts-loader": "^2.0.3",
"tslint": "^5.0.0",
"typedoc": "^0.5.10",
"typescript": "~2.7.1",
"webpack": "^2.3.3"
}
}