-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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": "@quantcdn/quant-client",
"version": "2.0.7",
"description": "Client library for API connectivity",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register --require source-map-support/register --recursive 'tests/**/*.test.ts'",
"lint:src": "eslint --ext .ts ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quantcdn/quant-ts-client.git"
},
"author": "Stuart Rowlands <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/quantcdn/quant-client/issues"
},
"homepage": "https://github.com/quantcdn/quant-client#readme",
"dependencies": {
"@cypress/request": "3.0.1",
"mime-types": "^2.1.27"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@typescript-eslint/typescript-estree": "^6.4.1",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^38.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"ts-node": "^10.9.1",
"@types/mocha": "^10.0.1",
"@types/chai": "^4.3.5"
}
}