-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "kontist",
"version": "0.52.5",
"description": "Kontist client SDK",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"repository": "https://github.com/kontist/js-sdk.git",
"author": "Kontist GmbH",
"license": "Apache-2.0",
"scripts": {
"build": "tsc && npx webpack",
"test": "npm run lint && npm run build && mocha --recursive 'dist/tests/**/*.spec.js'",
"cover": "nyc npm run test",
"schema:generate": "graphql-codegen --config codegen.yml",
"lint": "tslint --fix --project ."
},
"dependencies": {
"@types/ws": "8.5.12",
"abab": "^2.0.3",
"client-oauth2": "4.3.0",
"cross-fetch": "^3.1.5",
"dotenv": "^15.0.0",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"graphql-ws": "^5.5.5",
"isomorphic-ws": "^5.0.0",
"js-sha256": "^0.9.0",
"querystring-es3": "^0.2.1",
"ws": "8.18.0"
},
"overrides": {
"tough-cookie": "4.1.3"
},
"devDependencies": {
"@graphql-codegen/add": "5.0.3",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/flow": "3.0.0",
"@graphql-codegen/typescript": "4.0.9",
"@types/chai": "^4.3.0",
"@types/jsdom": "^16.2.14",
"@types/mocha": "^10.0.6",
"@types/sinon": "^10.0.9",
"chai": "^4.3.6",
"copy-webpack-plugin": "^6.2.1",
"jsdom": "^19.0.0",
"mocha": "^10.3.0",
"moment": "^2.29.1",
"nyc": "^15.1.0",
"sinon": "^13.0.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "^5.90.3",
"webpack-cli": "^4.9.2"
},
"bin": {
"kontist": "./cli/index.js"
}
}