forked from gravwell/js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.66 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
95
96
97
{
"name": "gravwell",
"version": "0.0.0-PLACEHOLDER",
"description": "",
"main": "dist/node/main.js",
"browser": "dist/browsers/main.js",
"types": "dist/browsers/main.d.ts",
"scripts": {
"test": "npm run test:node && npm run test:browsers && npm run test:ts-compatibility",
"test:browsers": "scripts/test-browsers",
"test:node": "scripts/test-node",
"test:ts-compatibility": "scripts/test-typescript-compatibility",
"build": "scripts/build",
"build:browsers": "scripts/build --browsersOnly",
"build:node": "scripts/build --nodeOnly",
"build:tests": "scripts/build --tests --assets",
"lint": "scripts/lint",
"format": "scripts/format",
"prepublishOnly": "npm ci && npm run format && npm run lint && npm run build"
},
"keywords": [
"Gravwell",
"client",
"API",
"SDK",
"Node",
"browser",
"typescript"
],
"author": "Gravwell <code@gravwell.io> (https://www.gravwell.io/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gravwell/js-client.git"
},
"bugs": {
"url": "https://github.com/gravwell/js-client/issues"
},
"homepage": "https://github.com/gravwell/js-client#readme",
"dependencies": {
"@lucaspaganini/value-objects": "^1.3.0",
"@types/lodash": "^4.14.168",
"@types/node": "14.14.27",
"base-64": "^1.0.0",
"date-fns": "^2.17.0",
"form-data": "^3.0.0",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.15",
"node-fetch": "^2.6.1",
"utf8": "^3.0.0",
"ws": "^7.4.3"
},
"peerDependencies": {
"rxjs": "^6.6"
},
"devDependencies": {
"@types/base-64": "^0.1.3",
"@types/jasmine": "^3.6.3",
"@types/node-fetch": "^2.5.8",
"@types/utf8": "^2.1.6",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"@types/yargs": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"expect-type": "^0.11.0",
"jasmine": "^3.6.4",
"jasmine-core": "^3.6.0",
"jasmine-marbles": "^0.8.3",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^5.0.0",
"license-check-and-add": "^4.0.1",
"prettier": "^2.2.1",
"rename-cli": "^6.2.1",
"rimraf": "^3.0.2",
"rxjs": "6.6.7",
"ts-node": "^9.1.1",
"tsc-alias": "^1.2.6",
"typescript": "^4.1.5",
"uuid": "^8.3.2",
"webpack": "^5.21.2",
"yargs": "^16.2.0"
}
}