forked from openzipkin/zipkin-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "zipkin-js",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@babel/preset-env": "^7.26.0",
"eslint-plugin-header": "^3.1.1"
},
"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",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/recommended": "^1.0.8",
"@types/chai": "^5.0.1",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"browserify": "^17.0.1",
"browserslist": "latest",
"caniuse-lite": "^1.0.30001690",
"chai": "^5.1.2",
"co": "^4.6.0",
"co-mocha": "^1.2.2",
"eslint": "^9.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"express": "^4.21.2",
"husky": "^9.1.7",
"karma": "^6.4.4",
"karma-browserify": "^8.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.4.0",
"lerna": "^8.1.9",
"lint-staged": "^15.3.0",
"lolex": "^6.0.0",
"mocha": "11.0.1",
"npm-run-all": "^4.1.5",
"rolldown": "1.0.0-beta.1",
"sinon": "^19.0.2",
"ts-runtime": "^0.3.0",
"tslint": "^6",
"typescript": "^5.7.2"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{ts,js}": [
"//eslint --fix .",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]"
}