forked from tradingview/lightweight-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.68 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
98
99
100
101
102
103
104
105
106
107
108
109
{
"private": true,
"version": "3.4.0",
"name": "lightweight-charts",
"author": "TradingView, Inc.",
"license": "Apache-2.0",
"description": "Financial lightweight charts built with HTML5 canvas",
"bugs": {
"url": "https://github.com/tradingview/lightweight-charts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tradingview/lightweight-charts.git"
},
"module": "dist/lightweight-charts.esm.production.js",
"main": "index.js",
"typings": "dist/typings.d.ts",
"files": [
"dist/**",
"index.js"
],
"keywords": [
"financial-charting-library",
"charting-library",
"html5-charts",
"canvas",
"typescript",
"charting",
"charts"
],
"engines": {
"node": ">=12.18.1"
},
"dependencies": {
"fancy-canvas": "0.2.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "~11.1.1",
"@rollup/plugin-replace": "~2.3.3",
"@size-limit/file": "~4.9.2",
"@types/chai": "~4.2.9",
"@types/mocha": "~8.2.0",
"@types/node": "~12.12.47",
"@types/pixelmatch": "~5.2.1",
"@types/pngjs": "~3.4.0",
"@types/puppeteer": "~5.4.0",
"@typescript-eslint/eslint-plugin": "~4.14.1",
"@typescript-eslint/eslint-plugin-tslint": "~4.14.1",
"@typescript-eslint/parser": "~4.14.1",
"bytes": "~3.1.0",
"chai": "~4.2.0",
"cross-env": "~7.0.0",
"dts-bundle-generator": "~5.6.0",
"eslint": "~7.19.0",
"eslint-plugin-deprecation": "~1.2.0",
"eslint-plugin-import": "~2.22.0",
"eslint-plugin-jsdoc": "~31.6.0",
"eslint-plugin-markdown": "~2.0.0-alpha.0",
"eslint-plugin-prefer-arrow": "~1.2.1",
"eslint-plugin-unicorn": "~27.0.0",
"express": "~4.17.1",
"glob": "~7.1.6",
"markdown-it": "~12.0.2",
"markdown-it-anchor": "~7.0.1",
"markdownlint-cli": "~0.26.0",
"mocha": "~8.2.1",
"npm-run-all": "~4.1.5",
"pixelmatch": "~5.2.1",
"pngjs": "~6.0.0",
"puppeteer": "~5.5.0",
"rimraf": "~3.0.2",
"rollup": "~2.38.3",
"rollup-plugin-terser": "~7.0.2",
"size-limit": "~4.9.2",
"ts-node": "~9.1.1",
"ts-transformer-properties-rename": "~0.9.0",
"ts-transformer-strip-const-enums": "~1.0.1",
"tslib": "2.1.0",
"tslint": "6.1.3",
"tslint-eslint-rules": "~5.4.0",
"tslint-microsoft-contrib": "~6.2.0",
"ttypescript": "~1.5.10",
"typescript": "4.1.3"
},
"scripts": {
"postinstall": "npm run install-hooks",
"install-hooks": "node scripts/githooks/install.js",
"clean": "rimraf lib/ dist/",
"bundle-dts": "tsc --noEmit --allowJs dts-config.js && dts-bundle-generator --config dts-config.js",
"tsc": "ttsc -p tsconfig.prod.json",
"tsc-watch": "npm run tsc -- --watch --preserveWatchOutput",
"tsc-verify": "tsc -b tsconfig.composite.json",
"lint": "npm-run-all -p lint:**",
"lint:js": "eslint --format=unix --ext .js,.md,.javascript ./",
"lint:ts": "eslint --format=unix --ext .ts,.typescript ./",
"lint:md": "./node_modules/.bin/markdownlint -i \"**/node_modules/**\" \"**/*.md\"",
"check-markdown-links": "node scripts/check-markdown-links.js",
"rollup": "rollup -c rollup.config.js",
"rollup-watch": "npm run rollup -- --watch",
"build": "npm-run-all tsc rollup bundle-dts",
"build:watch": "npm-run-all tsc -p tsc-watch rollup-watch",
"build:prod": "cross-env NODE_ENV=production npm run build",
"build:release": "cross-env BUILD_TAG=release npm run build:prod",
"prepare-release": "npm-run-all clean build:release && node ./scripts/clean-package-json.js",
"size-limit": "size-limit",
"verify": "npm-run-all clean -p lint check-markdown-links build:prod -p tsc-verify test size-limit",
"test": "mocha tests/unittests/**/*.spec.ts"
}
}