forked from tradingview/lightweight-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.94 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
{
"private": true,
"version": "3.0.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": ">=10.12.0"
},
"dependencies": {
"fancy-canvas": "0.2.2"
},
"devDependencies": {
"@codechecks/build-size-watcher": "~0.1.0",
"@codechecks/client": "~0.1.10",
"@types/chai": "~4.2.9",
"@types/mocha": "~7.0.1",
"clean-publish": "~1.1.5",
"cross-env": "~7.0.0",
"dts-bundle-generator": "~4.3.0",
"eslint": "~7.1.0",
"glob": "~7.1.6",
"markdown-it": "~11.0.0",
"markdown-it-anchor": "~5.3.0",
"markdownlint-cli": "~0.23.1",
"npm-run-all": "~4.1.5",
"rimraf": "~3.0.2",
"rollup": "~2.10.9",
"rollup-plugin-node-resolve": "~5.2.0",
"rollup-plugin-replace": "~2.2.0",
"rollup-plugin-terser": "~6.1.0",
"ts-node": "~8.10.0",
"ts-transformer-properties-rename": "~0.2.0",
"ts-transformer-strip-const-enums": "~1.0.1",
"tslib": "2.0.0",
"tslint": "6.1.2",
"tslint-eslint-rules": "~5.4.0",
"tslint-microsoft-contrib": "~6.2.0",
"ttypescript": "~1.5.10",
"typecov": "~0.2.1",
"typescript": "3.9.3",
"vrsource-tslint-rules": "6.0.0"
},
"scripts": {
"prepare": "npm run build:prod",
"install-hooks": "node scripts/githooks/install.js",
"clean": "rimraf lib/ dist/",
"bundle-dts": "tsc --skipLibCheck --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:eslint": "eslint --format=unix --ext .js ./",
"lint:tslint": "tslint --config tslint.json --project tsconfig.json",
"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",
"codechecks": "codechecks",
"verify": "npm-run-all clean -p lint check-markdown-links build:prod -p tsc-verify test codechecks",
"test": "mocha tests/unittests/**/*.spec.ts"
}
}