This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "wavefront-sdk-javascript",
"version": "0.0.1",
"description": "Wavefront Core Javascript SDK",
"main": "dist/index.umd.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"start": "node -r @babel/preset-env -r @babel/register -r regenerator-runtime example.js",
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavefrontHQ/wavefront-sdk-javascript.git"
},
"keywords": [],
"author": "yzheqing@vmware.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wavefrontHQ/wavefront-sdk-javascript/issues"
},
"homepage": "https://github.com/wavefrontHQ/wavefront-sdk-javascript#readme",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-export-default-from": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"@babel/runtime": "^7.22.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"babel": "^6.23.0",
"chai": "^4.3.7",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"regenerator-runtime": "^0.13.5",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"pako": "^2.1.0",
"tdigest": "latest"
}
}