-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "@dxfeed/api",
"version": "1.6.0",
"description": "This package provides access to dxFeed streaming data",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"repository": "https://github.com/dxFeed/dxfeed-js-api.git",
"author": "Dmitry Petrov <[email protected]>",
"license": "MPL-2.0",
"scripts": {
"prebuild": "rimraf lib",
"build": "rollup -c",
"docs": "typedoc src/index.ts --out examples/public/docs",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest src"
},
"dependencies": {
"@types/cometd": "^4.0.7",
"cometd": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"esbuild": "^0.18.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^26.1.3",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"jest": {
"preset": "ts-jest"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}