forked from tradingview/lightweight-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.32 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
{
"private": true,
"version": "1.0.0-rc.4",
"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.0.0"
},
"devDependencies": {
"@types/chai": "~4.1.7",
"@types/mocha": "~5.2.7",
"chai": "~4.2.0",
"clean-publish": "~1.1.2",
"dts-bundle-generator": "~3.1.0",
"eslint": "5.16.0",
"markdownlint-cli": "~0.16.0",
"mocha": "~6.1.4",
"npm-run-all": "~4.1.5",
"rimraf": "~2.6.3",
"rollup": "~1.15.0",
"rollup-plugin-node-resolve": "~5.0.1",
"rollup-plugin-replace": "~2.2.0",
"rollup-plugin-terser": "~5.0.0",
"ts-node": "~8.2.0",
"tslib": "1.10.0",
"tslint": "5.17.0",
"tslint-eslint-rules": "~5.4.0",
"tslint-microsoft-contrib": "~6.2.0",
"typescript": "3.5.1",
"vrsource-tslint-rules": "6.0.0"
},
"scripts": {
"install": "npm run install-hooks && cd tests/e2e && npm i",
"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": "tsc -b src",
"tsc-watch": "tsc -b --watch --preserveWatchOutput",
"tsc-all": "tsc -b .",
"tsc-all-watch": "tsc -b . --watch --preserveWatchOutput",
"lint": "npm-run-all -p lint:**",
"lint:eslint": "eslint --format=unix --ext .js ./",
"lint:tslint": "tslint --config tslint.json --project tsconfig.all-non-composite.json",
"lint:md": "./node_modules/.bin/markdownlint -i \"**/node_modules/**\" \"**/*.md\"",
"rollup": "rollup -c rollup.config.js",
"build": "npm-run-all tsc rollup bundle-dts",
"verify": "npm-run-all clean tsc-all lint build test",
"test": "mocha tests/unittests/**/*.spec.ts"
}
}