forked from openzipkin/zipkin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "zipkin-js",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@babel/preset-env": "^7.3.3"
},
"scripts": {
"install:deps": "lerna exec npm install --no-shrinkwrap",
"audit": "lerna exec npm audit",
"audit:fix": "lerna exec npm audit fix",
"lint:es": "eslint packages",
"fix-lint": "eslint packages --fix",
"lint:ts": "tslint -c tslint.json -e './packages/**/node_modules/**/*.ts' './packages/**/*.ts'",
"lint": "npm-run-all --parallel lint:*",
"test:es": "npm run lerna-test",
"test:ts": "tsr packages/*/test-types/*.test.ts --noAnnotate --libDeclarations && mocha --opts test/mocha-types.opts",
"test": "npm run test:es && npm run test:ts",
"lerna-test": "lerna run test",
"lerna-test-browser": "lerna run test-browser",
"lerna-test-debug": "lerna run test-debug",
"lerna-clean": "lerna clean",
"lerna-build": "lerna run build",
"lerna-publish": "lerna publish",
"lerna-publish-ci": "lerna publish prerelease --canary --yes",
"postinstall": "yarn lerna-build"
},
"author": "OpenZipkin <[email protected]>",
"repository": "https://github.com/openzipkin/zipkin-js",
"devDependencies": {
"@babel/cli": "^7.3.3",
"@babel/core": "^7.3.3",
"@babel/polyfill": "^7.3.3",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.3.3",
"@types/chai": "^4.1.7",
"@types/express": "^4.17.0",
"@types/mocha": "^5.2.5",
"browserify": "^16.2.3",
"browserslist": "^4.6.3",
"caniuse-lite": "^1.0.30000978",
"chai": "^3.5.0",
"co": "^4.6.0",
"co-mocha": "^1.2.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"express": "^4.17.0",
"karma": "^3.1.3",
"karma-browserify": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.0.0",
"karma-source-map-support": "^1.3.0",
"lerna": "^3.16.5",
"lolex": "^1.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^3.0.0",
"sinon": "^1.17.6",
"ts-runtime": "^0.1.35",
"tslint": "^5.0.0",
"typescript": "^3.7.5",
"yarn": "^1.17.2"
},
"workspaces": [
"packages/*"
]
}